Opencv CV ColorHSV error - c

can anyone tell me why i am getting this error?
because of that I'm getting this error too
Trying to integrate opencv with artoolkit

Ruben, we've talked about this on Tweeter. This is a compiling error that is telling you that it doesn't know what colorHSV is.
Looking at your code and the error message, I can tell that colorHSV is a class that should be defined in your code or in one of the 3rd party libraries you are using.
I've done some research and I found a code very similar to yours. Apparently, colorHSV is a custom data type that the developer uses, but the page doesn't provide the entire source code of the application, just a few snippets here and there to give directions. In other words, there's a lot of code missing in that post.
However, they do mention using a technology for Augmented Reality named Occlusion. A little bit more of research showed me ait-occlusion, which implements a colorHSV. This seems to be the same type you are using in your code.
If you still haven't figured it out, you need to:
download/compile/install Occlusion on your system,
add the proper #include for ColorHSV.h,
and finally adjust your project properties to link your application with this library.
If you have any doubts on any of these procedures, Google it.

Related

Can't open/create my Salesforce projects with Mavensmate anymore

I used to connect my Salesforce projects without any problem since today.
Now everytime I want to create or open a new project through Mavensmate. I get this error :
Error initializing project: client identifier invalid
I don't know how to solve it. I have googling without finding any solution. I thought this could solve my issue, but it doesn't work.
Please help!
Not sure if this is related or already said but it sounds like MavensMate has finally died. Related conversation/details here. If I knew how to build the windows version of the MavensMate source I'd try myself but seems like there is a security issue that would have to be applied too which I don't have time for (plus possibly out of my expertise reach).
So I'm now biting the bullet and starting the move from Sublime to VS Code using a couple different articles (here and here). Pretty sad about this but seems no other way. If possible I'll loop back to Sublime in the future but no idea if that will be feasible or not. If anyone finds a fix for MavensMate or a new way to do SFDC work in Sublime please let us know!

Tizen Docs give C headers but not Lib names?

Trying to implement some Unity3D C# plugin code but am finding the Tizen docs to be rather lacking.
I need to know what Lib names are used for specific headers. Such as the message box api: https://developer.tizen.org/dev-guide/2.3.0/org.tizen.native.mobile.apireference/group__CAPI__MESSAGING__MESSAGES__MODULE.html#ga32013c0d16b46a60be3f837c6474e4be
It tells me the header required but not the lib its used in. BlackBerry, MS and Apple all list this in there docs and is part of normal doc gen. Why Tizen doesn't give you this is beyond me. Is there an easy quick way to find this info? Thought someone might know.
Here is the location to lib: C:\tizen-sdk\platforms\mobile-2.3\rootstraps\mobile-2.3-device.core
Would be nice to know what lib goes with what header.
Looks like it might be: libcapi-messaging-messages.so
Yes, someone seems to think it's a good idea for those libraries to be opaque to the reader, not sure why. The set of "open source" libraries, including the EFL ones, are normally identified by name, but the Tizen-specific part is not. Will try to find out the motivation. It has caused me some problems as well (yes I know in the stackoverflow parlance this is not an "answer")

How to create a blank ModernWindow using ModernUI?

I have followed the MUI guide provided here: http://mui.codeplex.com/wikipage?title=How%20to%20use%20your%20own%20navigation%20framework
but that doesn't work because the BlankWindow resource is not available.
Then someone aswked about it here: http://mui.codeplex.com/workitem/19663
and the developer replied that the user should recompile the library using the latest source code.
I've downloaded the latest source code from here: http://mui.codeplex.com/SourceControl/latest
but upon compilation, the resulting library is the same that's distributed online.
So at the moment I am confused in regard to solving this issue. Could anyone provide some support please?
Do you use Resharper?
Look here, this is maybe only designer problem.
I have the same issue... But I can normaly build and run my application.
They say:
Weird. I am having the same issue on my machine (VS2012 + Resharper).
It works fine when I run it but it's failing to build in TeamCity. Ill
keep investigating...
I am running a program created via the MUI template in VS. Try to
remove it from resharper error/warning. Resharper can force a simple
warning to an error if a wrong setting is set.

Having trouble with undefined reference to error

I know there are a lot of posts related to this particular error but nothing seems to be helpful in ,my case, So please forgive me for that I am posting question after almost 2 days of research on google:(
I am working on a game for blackberry playbook, and for sound/audio I am using openal along with OggVorbis, I have downloaded blackberry port of OggVorbis from following source
https://github.com/blackberry/OggVorbis
but its integration with game is creating issue like it says undefined reference to ov_clear that is in vorbisfile.h and vorbisfile.c is compiled and I can see ov_clear in libvorbis.a qnx momentics IDE, and I have added libvorbis in my game but still I am getting these errors
Please help
Somehow I did figure it out what was the problem. I am a C#.net programmer where it does not matter you are adding reference to a library project or main project, but here you can't add a reference to a static library in an other static library, that was the reason for these errors. Thats my understanding may be someone could guide me in a better detail way.
Regards
Ahsan

Dependencies of dependencies not being copied to the output directory

I posted this question on the MSDN forum but haven't been able to receive much of an answer, so decided to try it out here.
I'm having a problem with dependency libraries of a project not being copied to the output directory of a second project that references it, when the first library is mostly xaml. Here is a typical scenario when this happens
SolutionX
- SomeControls.Dll { contains wpf user controls }
external reference: WPFTheme.dll*
- MainApp.Exe
project reference: SomeControls.dll
Commonly what happens here is that when building the solution, WPFTheme.dll is not copied to the output directory of the MainApp.Exe project. (* this also works if referencing a third project instead of an external)
I usually use a post build event to handle this situations... but i found the problem was intermittent.
If I don't reference ANY of the classes in WPFTheme.dll in my c# code but I do so in xaml, then as said before the WPFTheme.dll library doesn't get copied.
BUT if i reference Any class (even just assigning them null) from some c# in the project (even backend xaml.cs class) - then everything works as one would expect.
So has anyone else encountered this problem? Is there a way to force the library to get copied if referenced by xaml?
Just to add more info... all this happens with libraries that show up as external in the project file with a relative path in the HintPath.
Thanks everyone,
K
I have this exact same issue with dependency injection through reflection, i get around it with post build events and when deploying nant scripts, sorry i couldnt be more help, look forward to seeing a solution, you can always just add the refs to the startup project directly, can get into some fun issues with that long term but it will work

Resources