Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion intermediate_source/realtime_rpi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ OpenCV는 ``numpy`` 배열을 BGR로 반환하므로 이 배열을 읽고 약간
.. code:: python

ret, image = cap.read()
# convert opencv output from BGR to RGB
# opencv 출력을 BGR에서 RGB로 변환합니다.
image = image[:, :, [2, 1, 0]]

데이터를 읽고 처리하는데 약 ``3.5ms`` 가 걸립니다.
Expand Down