opencv: Manipulating edge-detected pixels -
i new opencv image processing.
my task simple. have canny-edge detected image. have rid of edge-detected pixels. example, @ coordinates of (20,20), edge-detected pixel should eliminated.
is there possibility solution?
i thankful if of can guide me in solving this.
thank much, karthik
you can change parameters of canny edge detection , tune them needs. if want specific point or finite specific knows points want rid off access underlying pixel data , set 0. width = image.cols = y-position, j = x-position image.data[i*width + j] = 0.
Comments
Post a Comment