Ask Your Question

muglikar's profile - activity

2020-11-06 05:33:54 -0600 received badge  Famous Question (source)
2020-10-01 15:06:32 -0600 received badge  Popular Question (source)
2019-08-01 05:17:51 -0600 edited question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2019-08-01 05:17:25 -0600 edited question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2019-07-20 07:04:23 -0600 commented question Find hinge point or axis of rotation point?

I tried fitting Hough circles but it's computationally expensive as the radius as well as centre of these circles is unk

2019-07-20 07:02:36 -0600 edited question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2019-07-20 06:58:32 -0600 edited question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2019-07-11 01:38:53 -0600 commented question Find hinge point or axis of rotation point?

@Witek: We're not allowed to use markers. @Chris: We're not allowed to share actual images. However, this drawn image is

2019-07-11 01:36:23 -0600 commented question Find hinge point or axis of rotation point?

@Witek: We're not allowed to use markers. @Chris: We're not allowed to share actual images. However, this drawn image is

2019-07-11 01:34:48 -0600 edited question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2019-07-10 05:53:43 -0600 edited question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2019-07-10 05:52:41 -0600 asked a question Find hinge point or axis of rotation point?

Find hinge point or axis of rotation point? I have a problem at hand where I need to detect/predict the coordinates of t

2018-09-18 03:20:42 -0600 commented question Predicting lux values from images?

OpenCV has image processing and machine learning modules.

2018-09-14 05:57:14 -0600 asked a question Predicting lux values from images?

Predicting lux values from images? I have several images (frames from a camera approx. 25,000 images) for which I have o

2018-07-16 16:18:14 -0600 received badge  Notable Question (source)
2017-09-06 20:22:52 -0600 received badge  Popular Question (source)
2016-04-15 13:18:10 -0600 answered a question How can I sort the matrix acc. to the first column?
//get first column
cv::Mat one = your_mat.col(0);
// sort the first column and save indices in dst
cv::Mat1i idx;
cv::sortIdx(one, idx, cv::SORT_EVERY_COLUMN + cv::SORT_ASCENDING);
// now build your final matrix
cv::Mat result(your_mat.rows, your_mat.cols, your_mat.type());
for(int y = 0; y < your_mat.rows; y++){
   your_mat.row(idx(0,y)).copyTo(result.row(y)); //correction here
}
2016-04-14 08:05:06 -0600 received badge  Enthusiast
2016-02-21 12:44:47 -0600 asked a question Program doesn't compile as libglog.so not found, Glog compilation gives libglog.a What to do?

Program doesn't compile as lobglog.so not found, Glog compilation gives libglog.a What to do?

usr/bin/ld: warning: libglog.so.0, needed by /usr/local/lib/libopencv_sfm.so, not found (try using -rpath or -rpath-link) /usr/local/lib/libopencv_sfm.so: undefined reference to google::base::CheckOpMessageBuilder::CheckOpMessageBuilder(char const*)' Makefile:156: recipe for target 'brightnessDetector' failed /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::LogMessage::LogMessage(char const, int, int)' /usr/local/lib/libopencv_sfm.so: undefined reference to google::base::CheckOpMessageBuilder::~CheckOpMessageBuilder()' /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::base::CheckOpMessageBuilder::ForVar2()' /usr/local/lib/libopencv_sfm.so: undefined reference to google::kLogSiteUninitialized' /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::LogMessage::stream()' /usr/local/lib/libopencv_sfm.so: undefined reference to google::InitGoogleLogging(char const*)' /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::LogMessageFatal::LogMessageFatal(char const, int, google::CheckOpString const&)' /usr/local/lib/libopencv_sfm.so: undefined reference to google::base::CheckOpMessageBuilder::NewString()' /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::LogMessage::LogMessage(char const, int)' /usr/local/lib/libopencv_sfm.so: undefined reference to fLI::FLAGS_v' /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::InitVLOG3__(int, int, char const, int)' /usr/local/lib/libopencv_sfm.so: undefined reference to google::LogMessageFatal::~LogMessageFatal()' /usr/local/lib/libopencv_sfm.so: undefined reference togoogle::LogMessage::~LogMessage()' /usr/local/lib/libopencv_sfm.so: undefined reference to `google::LogMessageFatal::LogMessageFatal(char const, int)' collect2: error: ld returned 1 exit status make: * [brightnessDetector] Error 1 20:12:17: The process "/usr/bin/make" exited with code 2.

2016-01-22 08:50:26 -0600 commented question Isn't there a OpenCV Cuda function similar to findContours?

Ok, any nudging link for the said method documentation @StevenPuttemans. Actually, I've begun GPU porting for my entire project and this precisely is my bottle neck roadblocking pain point!

@Guyygarty, that seems exciting but why are you calling yourself 'somebody'? :) It'd be a pleasure if I could get to see how you did it. And btw, I'm not in this pursuit only for gains from this exact finding contours thing, but the overall gains from all the functions. :)

Surprisingly, findContours() doesn't give any compilation error even when the input is a GpuMat. I'm curious why.

2016-01-22 05:25:07 -0600 commented question Isn't there a OpenCV Cuda function similar to findContours?

Does findContours work on both cv::Mat and cv::cuda::GpuMat, @StevenPuttemans ?

2016-01-22 03:20:21 -0600 asked a question Isn't there a OpenCV Cuda function similar to findContours?

There are several OpenCV CPU functions which have a direct (GPU) Cuda counterpart like cv::cvtColor & cv::cuda::cvtColor.

But I found no direct or indirect (GPU) Cuda counterpart for cv::findContours CPU.

Isn't there a OpenCV Cuda function similar to findContours? Or does findContours work on both cv::Mat and cv::cuda::GpuMat?

2015-12-27 12:41:22 -0600 received badge  Taxonomist
2015-06-13 03:42:37 -0600 commented answer Detect if image is blurry

@mary Could you post the link to the C++ code please?

2014-09-07 08:22:22 -0600 commented answer Enable Multithreading with TBB during cascade training

Is there no way to run traincascade on gpu yet?

2014-08-08 05:18:25 -0600 commented question Binary compatibility break

Did you find any solution to this problem @lordtchofo ?

2014-07-01 05:20:31 -0600 asked a question How to draw inscribed rectangle in fish eye corrected image using opencv?

How to draw inscribed rectangle in fish eye corrected image using opencv?

Original image:

image description

This is the fish eye corrected image: image description

This is what I need to crop the image: Either the 4 corner points of the rectangle or the midpoints of the sides.

image description

Final manually corrected image:

image description

2013-07-08 06:37:26 -0600 asked a question Why is there a size condition in pyrDown function?

image description

And what does it exactly mean?

2013-07-08 04:12:35 -0600 received badge  Supporter (source)
2013-07-05 02:01:33 -0600 asked a question Has anyone tried doing mesh based image warping with OpenCV? If yes, how to do it?

Its a friend's poblem. Has anyone tried doing mesh based image warping with OpenCV? If yes, how to do it? Only closest option is remap function, which is hardly anything if you want to do something like http://www.projectwoman.com/uploaded_images/bradley16_fig02-704998.jpg

2013-07-03 08:30:14 -0600 received badge  Student (source)
2013-07-03 07:54:03 -0600 asked a question Review of ‘Instant OpenCV Starter’ book

A few weeks ago I got a request from a Marketing Research Executive Mr. Dyson D’Souza, who works for Packt Publishing for reviewing a book titled “Instant OpenCV Starter“. He approached me seeing my LinkedIn profile, which you may visit via the widget on the right sidebar fo this page. I was quite delighted by the opportunity. Here's my review of the book that can be bought here:

Overall this book is an excellent starting point for beginners to start programming in Image Processing and Computer Vision using OpenCV. This book will surely generate a lot of interest in students who I'm quite sure will get hooked to the enormous possibilities presented by the OpenCV library.

Please read my review here on my Website: Review of Packt Publishing’s ‘Instant OpenCV Starter’ book

Hope you find the review useful.

2013-06-12 03:34:23 -0600 received badge  Editor (source)
2013-05-23 04:01:20 -0600 asked a question Which other values does the anchor point in blur function take?

This link says:

anchor – anchor point; default value Point(-1,-1) means that the anchor is at the kernel center.

I could change this value to (0,0) and it worked with the image slightly shifted to top left. But it did not work for any other value i.e. it gives Unhandled Exception (Unhandled exception at 0x75d8d36f in testCV.exe: Microsoft C++ exception: cv::Exception at memory location 0x0020ee6c..) for any other value of the coordinates of the anchor point. So, I'm a bit unclear about what does it exactly mean?

blur(src, dst, Size(i, i), Point( 2, 2 )); // The point takes on (0,0) & (-1,-1) values for now. Why???