c++ - openCV Animal (mice) Recognition -
i researching animals recognition algorithms opencv, more precisely of laboratory mice (white) , have not found references. of have seen related algorithms such support vector machine (svm) , hidden markov not sure if correct path.
i books references, scientific articles or codes in c++ focus on issue.
anyone have ideas?
given mice white if track them on counter of different colour, solid colour, relatively easy approach use opencv's cvtcolor(src,dst,color_bgr2hsv);
, find min , max hsv values of mice on given background.
threshold output binary image using inrange
, white being mice , black being background, , use findcountours
, moments method locate mice , track them.
source , full tutorial: link
disclaimer:this not video, credit author of channel.
Comments
Post a Comment