opencv & c++ with objective-c [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to write a program in C++ using OpenCV library and run it within an Objective-C program that someone gave me.
I don't have any prior knowledge about Objective-C, so is it possible to do this properly and how should I start?
I mean, Can I make my C++ & OpenCV program as it is a stand alone program and then include it in the Objective-C one?
Thank you very much.

Mixing Objective-C and C++ is fine with Xcode and Apples LLVM compiler. Might be done in a number of ways and modes, so yes you may build your C++ & OpenCV module and then use some Objective-C wrappers.

Related

when use DLL in c++? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
For the last 3 weeks I've been trying to create a code generator and my boss told me to put into a plugin DLL so we can call it next time when we want to reuse it !
So I searched the web for a Dll meaning but it still kind of vague , so if you have a better simple definition or a clear idea about DLL in C++ for beginners please enlighten me.
Another thing : I noticed that some uses QT to create plugin , so what's in QT that give us the possibility to do that that we can't find in any other IDE ?
PS: I've never used QT!
DLL-Dynamic Link Library is classes, methods and procedures packaged up into a compiled file to be used in conjunction with other programs. Its similar to an executable .exe file except you don't need a main method.

Is it possible to use applets in C++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am trying to create a game in traveling salesman problem using iterative algorithm.
I need the output in an applet environment, in a new window.
Is it possible to use applets in C++ like we normally use it in Java platform?
Can anyone clear my doubt?
No. Java applets compile to Java bytecode and are delivered to a JVM running in a webbrowser. C++ programs (currently) cannot be compiled to Java bytecode, so they cannot be shipped to webbrowsers. Google is doing some work in this area (Native Client, NaCl) but that's far from finished.

Embedding C and C++ into a microchip [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm sorry, I'm lost.
I program microchips, and I primarily work in assembly, but I have much more experience in C and C++. I know that there is a way to embed C++ into the microchip, I just need to know how. If I need to make a clone of C++, I am willing, if someone will tell me how.
Thanks in advance.
1) Write program in C or C++.
2) Compile program.
3) (Optional) Test program on an emulator.
4) Burn program into desired microchip.
If you give us specific chips, we can give you more details of how each of the steps works.

convert c++ libraries to objective-c [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Now I am porting c++ game to objective-c.
The source code uses some dlls such as "malloc.h" and this is the standard dll of C++ so it
cannot be included in objective-c.
What is the best way to overcome this problem.
I hope your help.
Thanks.
To convert code from one language to another, you need to have at basic working knowledge of both languages and platforms involved. It sounds as if both your C/C++ and Objective-C knowledge is too rudimentary for you to undertake this task. I'd recommend you take a short course and work on small projects in both languages to gain some experience so that you'll be qualified to perform this translation.

C++ Autopatcher GUI (With a unique skin) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Can you please take a look at this picture of a game launcher:
image http://4.bp.blogspot.com/-5sHFYgzDSqE/TiRrdl2cUmI/AAAAAAAAAJs/ULE76E6Nwwo/s400/Launcher.png
How can I create something identical? (using my own art)
Everything about the design I just love, I downloaded qt, wxWidgets, nuilib and several others, but they either do not compile well or bloated and damn difficult to use.
Does anyone know the exact widget library that most asian mmorpgs use? Like that picture.
Those are just drawn images. It is trivial with any toolkit.
Qt, GTK and wxWidgets are the most prominent toolkits. I would recommend Qt, since it is very widely supported. But you can do this even with plain WinAPI or XLib.