2020-05-04 11:57:46 -0600 | received badge | ● Notable Question (source) |
2018-11-30 09:42:05 -0600 | received badge | ● Popular Question (source) |
2016-12-15 13:25:40 -0600 | received badge | ● Enthusiast |
2016-12-14 22:19:09 -0600 | commented answer | Captured frame RGB to YUV and Reverse Thanks for the code cause i couldnt find how the split Mat function works. I dont understand the way though that i will have to manage the y,u,v buffers, do i have to place them in a for loop as above and get into a plane cause sending them y,u,v as is gives me a crash cause of wrong values i send :/ If you have any good tutotial i could learn also or code to convert them the way the above code did would be much appreciated |
2016-12-14 22:15:07 -0600 | received badge | ● Supporter (source) |
2016-12-14 19:02:01 -0600 | commented question | Captured frame RGB to YUV and Reverse This is the part of a code not the full code, and i need 2 parts one that i will convert the VideoCapture from camera to yuv and send it as y,u,v with strides from a buffer and the second to recieve y,u,v,ystride,ustride,vstride buffer and convert it to rgb and show it in a window of imshow("Recieved Cam" img) or cvShowImage(....) for e.x. To make it more clear i need to send from sendFrame() and recieveFrame() the values they need. |
2016-12-14 18:34:21 -0600 | commented question | Captured frame RGB to YUV and Reverse @Tetragramm thanks for the response, i have tried this cvtColor(CamFrame, CamFrame, COLOR_BGR2YUV); but how do i get the values of y,u,v with the strides out of it ? the planes array stores and modifies the rgb to yuv values with strides in it and each one of them need to be send individually, how can i get this values from the cvtColor output Mat ? |
2016-12-14 16:12:26 -0600 | asked a question | Captured frame RGB to YUV and Reverse I have this code which is a bit of old but it was used to convert RGB to YUV but for me doesn't work, i am using c++ and MVS2013 and opencv to make this happen, i want to capture the RGB frame convert it to YUV and send the values of YUV array through buffer and do the oposite on the recieve as in the code below but it doesn`t convert it and have an error near the send function commented also. Anyone with good knowledge on opencv would be nice to give me a good solution on it, anything can be changed except the functions of send and recieve which needs to get these data through buffer and i am not so expert to make it work well. (more) |
2016-12-08 15:22:04 -0600 | received badge | ● Self-Learner (source) |
2016-12-08 15:17:20 -0600 | received badge | ● Scholar (source) |
2016-12-08 15:17:12 -0600 | answered a question | Linking staticlib in mvs2013 release gives external errors The solution to this problem if anyone encounter it again is this post as LBerger very well pointed to You need to include the Vfw32.lib inside your project along with all the opencv static lib files and includes. The Vfw32.lib is not inside the Opencv libraries but it is in windows visual studio The solved answered goes to LBerger ^.^ Thanks LBerger |
2016-12-08 15:15:33 -0600 | commented answer | Linking staticlib in mvs2013 release gives external errors Holly crap, you are right, the Vfw32.lib is in the mvs2013 and i was searching for it inside opencv :s Thanks yes that solved it |
2016-12-08 11:51:55 -0600 | commented answer | Linking staticlib in mvs2013 release gives external errors Thanks for the response, i have searched and i dont have any Vfw32.lib inside the opencv.2.4.13 prebuilted. I found the cap_vfw.cpp i added to the project which was in the source folder not in the build i added also the precomp.hpp which needs to be with it and again it pops the same errors exactly. Is it something with imcombatibility with my system or i am doing something wrong cause i think it has to do something with static lib since its ok with dynamic libs :/ I use the prebuild latest version 2.4.13 what else can i check after all this ? |
2016-12-07 09:35:14 -0600 | commented question | Linking staticlib in mvs2013 release gives external errors @LBerger. yes if i remove the VideoCapture it builds in static with Mat and all the libs included with no errors. When i enter the Videocapture cap(CV_CAP_ANY); it pops up all the 20 errors. Do i need to define or redefine anything else from higigui.hpp into my cpp file in order to work with static mode ? The problem seems to be in the highgui.lib when in static build |
2016-12-06 17:42:55 -0600 | commented question | Linking staticlib in mvs2013 release gives external errors I have tested also the staticlib in debug mode with the debug .libs also has the same 20 errors refering to the openv_highgui2413d.lib(cap_vfw.obj), it has something to do with the staticlib and this lib. Do i need to use included headers or any other files from opencv inside my project except the libs ? |
2016-12-06 04:33:41 -0600 | commented question | Linking staticlib in mvs2013 release gives external errors yes thats for sure, i havent test the debug static though, cause i need to implement it after my tests to a solution that need to be build in release mode, but i will try the debug later just to see if it has something to do with the release option instead of the debug. |
2016-12-05 20:00:38 -0600 | commented question | Linking staticlib in mvs2013 release gives external errors It doesn`t compile with any version i downloaded, it always pops up the same unresolved external about (cap_vfw.obj) inside the opencv_highgui2413.lib ... any suggestion ? |
2016-12-05 13:09:26 -0600 | commented answer | Linking staticlib in mvs2013 release gives external errors Thanks for the response i am on my way for testing it i will let you know, I tried with every possible option in the Linker options but cant make it work :/... i am downloading also the 3.1 version to check if it can work with it in static |
2016-12-05 13:09:22 -0600 | commented answer | Linking staticlib in mvs2013 release gives external errors Thanks for the response i am on my way for testing it i will let you know Nope, i ve tested by changing the lib order as you said and even tried other compinations but cant solve the static issue :/ |
2016-12-05 08:41:20 -0600 | commented question | Linking staticlib in mvs2013 release gives external errors @LBerger i updated my quesion with your request. I can provide also the unresolved external on "opencv_highgui2413.lib(cap_vfw.obj)" library which functions had the errors on |
2016-12-05 08:37:12 -0600 | received badge | ● Editor (source) |
2016-12-04 21:19:47 -0600 | asked a question | Linking staticlib in mvs2013 release gives external errors I have multiple errors LNK2001: unresolved external symbol error "opencv_highgui2413.lib(cap_vfw.obj) when i try to use the staticlib folder instead of lib and dlls in mvs2013 windows 10 and release option in project build. The statilib i am trying to use is opencv-2.4.13.exe
Is there anything i do wrong or is it something else ? Windows 10 - mvs2013 - The project i create to test is only a VideoCapture webcam test My Test project is working fine if i dont use the staticlib and use the lib with dlls but since i want a staticlib i test it with the above linkings of opencv and it has errors in every function of object opecv_highgui2413.lib Thanks in advance for any kind of help to solve this issue @LBerger request :
And Here is the small test which work with dynamic built of openv and not with static maby could help someone to help me out : @LBerger yes it builds it without errors but it doesn`t show the image at all, it opens the window and stays with gray backroung and no image is loaded inside, the image is on the same folder with my executable so it has something to ... (more) |