Python OpenCV のメソッドの仕様の調べ方
これ、重要です。見失うと悶絶します(先ほど、しました!)
だから、安全のために、記事に。
調べ方
import cv2 import inspect print(inspect.getdoc(cv2.drawMarker))
結果の表示は、
drawMarker(img, position, color[, markerType[, markerSize[, thickness[, line_type]]]]) -> img . @brief Draws a marker on a predefined position in an image. . . The function cv::drawMarker draws a marker on a given position in the image. For the moment several . marker types are supported, see #MarkerTypes for more information. . . @param img Image. . @param position The point where the crosshair is positioned. . @param color Line color. . @param markerType The specific type of marker you want to use, see #MarkerTypes . @param thickness Line thickness. . @param line_type Type of the line, See #LineTypes . @param markerSize The length of the marker axis [default = 20 pixels]
これは、単なるパクり記事というか。。。
以下の記事の末尾のほうで示されているのを見つけました。
(記事を書かれた人より、その記事を見つけた自分の偉大さに感動!)
コメント
お友達にも、展開下さい。
そうすると、自分が忘れたときに、聞けます!!!