Ask Your Question

Nuser's profile - activity

2019-07-11 03:00:54 -0600 commented question Saving as video in for loop

solved myself

2019-07-11 03:00:43 -0600 commented question Saving as video in for loop

img_array =[] for f, image_file in enumerate(image_files): im = cv2.imread(image_file) height,width,

2019-07-11 03:00:32 -0600 commented question Saving as video in for loop

img_array =[] for f, image_file in enumerate(image_files): im = cv2.imread(image_file) height,width,

2019-07-11 02:24:17 -0600 asked a question Saving as video in for loop

Saving as video in for loop Hello, I have this for loop, I want to save each iteration result as video frame. for f, i

2019-06-19 11:30:35 -0600 received badge  Student (source)
2019-05-12 01:24:43 -0600 received badge  Supporter (source)
2019-05-04 05:54:37 -0600 asked a question cv::threshold otsu value

cv::threshold otsu value Hello, in Python I can read the otsu threshold value like this otsu_thr, otsu_mask = cv2.thres

2019-04-23 04:04:31 -0600 commented question Direction of triangle

with math, yes. but is there easier way/algorithm built-in? :D

2019-04-23 04:01:16 -0600 commented question Direction of triangle

with math, yes. but is there easier way? :D

2019-04-23 03:50:29 -0600 commented question Direction of triangle

okey, I fixed, now says they are triangle all. after this point?, directions :)

2019-04-23 03:50:13 -0600 commented question Direction of triangle

okey, I fixed, now says they are triangle all. after this point?

2019-04-23 03:07:51 -0600 commented question Direction of triangle

no way, algorithm says those are rectangle, even tried blurring :(

2019-04-23 02:58:26 -0600 commented question Direction of triangle

approxPolyDP says it is rectangle. now trying to fix it

2019-04-23 02:52:37 -0600 commented question Direction of triangle

then? how can I get direction/orientation of a triangle?

2019-04-23 02:02:13 -0600 received badge  Enthusiast
2019-04-22 23:41:28 -0600 received badge  Editor (source)
2019-04-22 23:41:28 -0600 edited question Direction of triangle

Direction of triangle Hello, I have 4 types of triangle and I want to classify triangles by their directions: upward, do

2019-04-22 23:40:53 -0600 asked a question Direction of triangle

Direction of triangle Hello, I have 4 types of triangle and I want to classify triangles by their directions: upward, do

2019-04-21 15:16:57 -0600 marked best answer Failed to get characters/triangles

Hello, I wanted to read characters/triangles from a bar. I applied Otsu with different values to this bar but couldn't get the all characters exactly. The characters' colours are varying. Could someone give another way/algorithm to extract them? Also, is there any way to color sweeping, I mean try all colours then if exist, extract (extract all colored from black&white backgrounded image) ? Thanks for help

ret,im1 = cv2.threshold(crop_img,0,255,cv2.THRESH_OTSU)

The challenges, the last one is the hardest :(

image description

The best one I got which is unsuccesful:

image description

2019-04-21 15:16:57 -0600 received badge  Scholar (source)
2019-04-21 09:20:19 -0600 asked a question Failed to get characters/triangles

Failed to get characters/triangles Hello, I wanted to read characters/triangles from a bar. I applied Otsu with differen

2018-12-26 01:11:24 -0600 commented question cv2.imshow inside a seperate process?

namedWindow just creates a window. imshow puts the image in it

2018-09-24 13:16:01 -0600 commented question Adding hog feature to KCF tracker

Thanks for answers, I'll look at example and try to make my tracker, otherwise it doesn't work :)

2018-09-24 12:54:25 -0600 commented question Adding hog feature to KCF tracker

I'm using Python, maybe it's impossible to declare parameters to tracker because it says 'unexpected arguments'. Do you

2018-09-24 12:54:00 -0600 commented question Adding hog feature to KCF tracker

I'm using Python, maybe impossible to declare to parameters to tracker because it says 'unexpected arguments'. Do you kn

2018-09-24 11:36:54 -0600 asked a question Adding hog feature to KCF tracker

Adding hog feature to KCF tracker Hello, I want to add HOG feature to my KCF tracker. How can I do this? I searched a bi