Ask Your Question

shariq_azim's profile - activity

2020-04-17 10:50:49 -0600 asked a question Is opencv.js version comparable to same version in python or other languages

Is opencv.js version comparable to same version in python or other languages Hello, Since opencv.js version now has 4.3.

2019-10-28 09:01:40 -0600 edited question video decode of stream from bytearray with opencv.js

video decode of stream from bytearray with opencv.js Hi, Can somebody kindly help me in converting a byte array string

2019-10-28 08:59:58 -0600 edited question video decode of stream from bytearray with opencv.js

video decode of stream from bytearray with opencv.js Hi, Can somebody kindly help me in converting a byte array string

2019-10-28 08:59:16 -0600 received badge  Editor (source)
2019-10-28 08:59:16 -0600 edited question video decode of stream from bytearray with opencv.js

video decode of stream from bytearray with opencv.js Hi, Can somebody kindly help me in converting a byte array string

2019-10-28 08:58:25 -0600 asked a question video decode of stream from bytearray with opencv.js

video decode of stream from bytearray with opencv.js Hi, Can somebody kindly help me in converting a byte array string i

2019-04-30 15:04:32 -0600 commented answer machine learning algorithm with opencv.js (javascript)

i was just curious in knowing ,that in the link that you have provided , i found some terms like "kmeans, knnmatch,

2019-04-30 14:52:20 -0600 commented answer machine learning algorithm with opencv.js (javascript)

did you get a chance to go through it @berak?

2019-04-24 14:18:10 -0600 received badge  Enthusiast
2019-04-23 10:00:34 -0600 commented answer machine learning algorithm with opencv.js (javascript)

hi, but there i see terms like kmeans, knnmatch,setSVMDetector, train, match and etc mentioned there. If i am not wrong

2019-04-21 13:28:55 -0600 asked a question machine learning algorithm with opencv.js (javascript)

machine learning algorithm with opencv.js (javascript) Hi, Can somebody validate if all the algorithms available in Ope

2019-04-11 10:38:34 -0600 received badge  Supporter (source)
2019-04-03 05:29:39 -0600 commented answer finding absolute straight lines/ rectangles for contours

it is ok Supra, atleast you are taking your time for me. :) Btw, let me also tell you, that whole intention is to get

2019-04-02 11:57:37 -0600 commented answer finding absolute straight lines/ rectangles for contours

hello, the original image is this: while I'm trying to derive something like this as you notice there are two lines

2019-04-02 11:56:24 -0600 commented answer finding absolute straight lines/ rectangles for contours

hello, the original image is this: link text while im trying to derive something like this as you notice there are

2019-04-02 10:34:26 -0600 commented answer finding absolute straight lines/ rectangles for contours

no no i mean, during the lines are generation how can i only draw horizontal lines instead of those having slope more

2019-04-02 08:04:02 -0600 marked best answer finding absolute straight lines/ rectangles for contours

While trying to detect the straight lines in an image, I'm unable to find the Hough transform of the image.

I have first converted the image to grayscale but unable to find the straight lines. image description

Thus, can you help me to make the contours which were detected as pure straight lines/rectangles. Such that I can easily find the horizontal lines(i will do it later) in the image.

`def hou():
   import math
   img = cv2.imread('image5GR.jpg')
   #gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
   edges = cv2.Canny(img,50,150,apertureSize = 3)
   minLineLength = 20
   maxLineGap = 10
   lines = cv2.HoughLinesP(edges,1,math.pi/180,100,minLineLength,maxLineGap)
   for x1,y1,x2,y2 in lines[0]:
      cv2.line(img,(x1,y1),(x2,y2),(0,255,0),2)
   while True:
     cv2.imshow('houghlines',img)
     if cv2.waitKey(20) & 0xFF == 27:
        break
   cv2.destroyAllWindows()

import cv2    
hou()`

Finally, the image I am getting, which isn't appropriate(only shows a small green line at the bottom) image description

same question is posted in StackOverflow question

2019-04-02 08:04:02 -0600 received badge  Scholar (source)
2019-04-02 08:03:28 -0600 commented answer finding absolute straight lines/ rectangles for contours

take my bow and respects sir !!! <3 you solved my initial problem with which i was struggling. next i would be lo

2019-04-01 15:22:28 -0600 asked a question finding absolute straight lines/ rectangles for contours

finding absolute straight lines/ rectangles for contours While trying to detect the straight lines in an image, I'm unab

2019-03-30 13:48:36 -0600 commented answer opencv.js vs opencv4nodejs

thanks..ill update you if i achieve something :)

2019-03-30 12:47:49 -0600 commented answer opencv.js vs opencv4nodejs

no no , i mean if just asking if we import the opencv.js in nodejs as an external file without compiling , will it work

2019-03-29 11:54:05 -0600 commented answer opencv.js vs opencv4nodejs

thanks for your answers. can you kindly clarify this too? "Further ,If the above is true then can do the same, within n

2019-03-29 11:53:32 -0600 commented answer opencv.js vs opencv4nodejs

thanks for your ansenter code herewers. can you kindlenter code herey clarify this too "Further ,If the above is true t

2019-03-28 15:11:13 -0600 commented question Issues with installing OpenCV JS on Windows 10

Hi, Do we need utils.js too? Also, can we just simply call/include/require/import the js file without the need of co

2019-03-28 13:00:06 -0600 asked a question opencv.js vs opencv4nodejs

opencv.js vs opencv4nodejs hi, can some one tell me what is the difference between opencv.js and opencv4nodejs . Btw,

2019-03-21 07:02:18 -0600 asked a question How to measure distance of object (in image) with openCV.js

How to measure distance of object (in image) with openCV.js Hello, Firstly i would like to mention that i am a absolute

2019-03-21 07:02:17 -0600 asked a question How to measure distance of object (in image) with openCV.js

How to measure distance of object (in image) with openCV.js Hello, Firstly i would like to mention that i am a absolute