![]() |
OpenCV - Problem bei C/C++ Konvertierung
Hallo zusammen
In der highGui.h steht folgende typdefinition typedef struct CvCapture CvCapture; was macht man damit in Delphi? Wenn ich mir das unter VC im Debugger anschaue sieht das aus wie ein Pointer. und mit
Delphi-Quellcode:
funktionierts nicht.
type cvCapture = record;
so ist die funktion deklariert
Code:
ciao
CvCapture* cvCaptureFromCAM( int index );
Stefan |
Re: OpenCV - Problem bei C/C++ Konvertierung
Moin Stefan,
da muss zu CvCapture aber noch mehr stehen. typedef struct CvCapture CvCapture; macht ja IMHO nichts anderes als "CvCapture" als Synonym für "struct CvCapture" zu definieren, und die Funktion gibt einen Pointer hierauf zurück. Irgendwie fehlt da noch die Deklaration der Struktur. Damit könntest Du dann so etwas machen:
Delphi-Quellcode:
Als Rückgabetyp ginge dann PCvCapture.
type
PCvCapture = ^CvCapture; CvCapture = packed record // Hier die Elemente des Records end; |
Re: OpenCV - Problem bei C/C++ Konvertierung
Zitat:
Delphi-Quellcode:
type
PCvCapture = ^TCvCapture; TCvCapture = record // don't care / unknown end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:56 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz