Ask Your Question

kopar's profile - activity

2017-12-10 13:33:42 -0600 received badge  Scholar (source)
2017-12-10 13:27:35 -0600 asked a question Add .dxf drawing to OpenCV Mat object

Add .dxf drawing to OpenCV Mat object Hello, I would like to ask if anybody know is there a way to add as a new layer a

2017-12-10 02:30:17 -0600 marked best answer How to draw a dotted line [c++]

Hello all,

I am new here, i would like to ask you is there a way to change the color of the dotted line which i have created below. LineIterator do not take the color argument... I prefer to use yellow instead a defined blue. Thanks in advance for help.

LineIterator line(img, p1, p2, 8);           
for(int i = 0; i < line.count; i++,line++)
    if ( i%5!=0 ) {(*line)[0] = 200;}
2017-12-09 12:24:04 -0600 asked a question How to draw a dotted line [c++]

How to draw a dotted line [c++] Hello all, I am new here, i would like to ask you is there a way to change the color of