Search:

Type: Posts; User: aprop

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    939

    What do you mean by "all of those parameters can...

    What do you mean by "all of those parameters can be handled by the .Net framework", do you mean I can just insert these functions and code written in c++ and compile it in C#?
  2. Replies
    5
    Views
    939

    Here are a few simple ones void...

    Here are a few simple ones

    void con2txt(IplImage *img2)
    void vidstop (int event,int x, int y,int flags, void *param)
    void vidtake(int a ,int b)

    I would like to pass some image structure...
  3. Replies
    13
    Views
    1,720

    I found one of your arrays were going out of...

    I found one of your arrays were going out of bounds, you cant have array[-1] in your code. I wasnt sure what your problem was so I didnt look any further than this.



    for (int...
  4. Replies
    5
    Views
    939

    .Net interoperability headache

    I got the notion to create a gui interface for some image recognition functions I wrote using the opencv library in c++. My plan was to create my gui in c# and call my functions from my old c++ code....
  5. Replies
    0
    Views
    2,606

    Opencv 2.1 Sobel detector passing error

    Im Trying to perform a Sobel transform on an image however it gives this error:
    error: invalid initialization of reference of type 'cv::Mat&' from expression of type 'IplImage*'|
    cv.hpp|254|error:...
  6. Why is this working: Compiler question related to opengl tutor code.

    I was playing around with the Nate Robbins opengl code today and particularly the transformation code. When I tried to use this code in code blocks it was giving me some problems, like unidentified...
  7. Thread: Install program

    by aprop
    Replies
    1
    Views
    793

    Install program

    I have a few programs wrote that are using libraries that I download from the net, Opencv,glut ect.
    Now I want these programs to work on another computer but my problem is that when I simply put it...
  8. Replies
    9
    Views
    1,585

    Hey thanks for the feedback. Im working in...

    Hey thanks for the feedback.
    Im working in windows 7 using visual studio 2010.


    Im using windows from what I read about Shell scripts and from what I read in the faq Im not sure if they apply,...
  9. Replies
    9
    Views
    1,585

    Folder access library

    I have a file with about 200-300 images and I want to perform some functions on them all but I don’t want to have to go to the trouble of having to type out
    CvLoadImage(“img1.jpg”); run program...
  10. If statement is been passed over-Simple Opencv project

    I cant seem to hit these if statements my code seems to pass over them without altering the values I want. I cant seem to find the problem and the debugger wont hit them either as I run through the...
  11. Replies
    1
    Views
    3,343

    Setting up server socket?

    I’m new to socket programming and I have a few questions about how to get started.
    I’m thinking about creating a server socket I have 3 different computers on my home network will just writing a...
  12. Replies
    3
    Views
    4,233

    Simple collision detection

    I’m trying to have a cube, only moving in 2 dimensions for now, to be able to detect a collision with another cube and respond by baking off a step.
    I’ve managed to do this with my manual controls...
  13. Replies
    2
    Views
    880

    Im having problems reading 2 or more digit...

    Im having problems reading 2 or more digit numbers,like 30 and 43 , I think get is turning my charecters into asci codes thats why Im able to count spaces and commas and single digit numbers between...
  14. Replies
    2
    Views
    880

    File handling, character check

    Im trying to write a program that can check text files for certain characters,like numbers , letters ect, what am I doing wrong here.


    #include <iostream>
    #include <fstream>
    #include <cstdlib>...
  15. Replies
    3
    Views
    9,552

    fprintf(outf,"%c"); You're only printing a...

    fprintf(outf,"%c");
    You're only printing a single character here, and what's even worse, you haven't even supplied an address to print so the value is going to be some random value from the stack.
    ...
  16. Replies
    3
    Views
    9,552

    File Handling -Read write and edit a file

    Hi guys im trying to get a program to read a file and copy its contents to another file so far I seem to be having a problem.
    The file is only writing one letter, "X" in this case
    Im just...
  17. Replies
    6
    Views
    4,923

    Just to clarify these libaries contain functions...

    Just to clarify these libaries contain functions that specifically relate to producing a gui and the reason they have to be downloaded is because c/c++ does not have these functions by itself?

    Ya...
  18. Replies
    6
    Views
    4,923

    Questions about what can be done in c++

    I have just started to learn c++ but I am wondering what kind of applications can be built with c and c++

    For example I heard windows was made by millions of lines of c, so can I assume that...
Results 1 to 18 of 18