Good afternoon
I need to know if there is any movement on the camera in a certain area.
Would you be able to perform this check?
Do you also have a depth detector?
Looking at the Example, he pays for moving the entire camera
Search found 4 matches
- Mon Jul 04, 2022 8:05 pm
- Forum: RVMedia
- Topic: Motion Detector
- Replies: 1
- Views: 23222
- Tue May 17, 2022 7:58 pm
- Forum: RVMedia
- Topic: Parameters.Alias
- Replies: 2
- Views: 21289
Parameters.Alias
Hi
I'm setting parameters.alias but it's not appearing in the bar, as shown in the marked image
RVCamera.Parameters.Alias := 'TESTE';
RVCamView.CaptionParts := [rvccpAlias, rvccpDate, rvccpTime];
I'm setting parameters.alias but it's not appearing in the bar, as shown in the marked image
RVCamera.Parameters.Alias := 'TESTE';
RVCamView.CaptionParts := [rvccpAlias, rvccpDate, rvccpTime];
- Thu Apr 14, 2022 11:52 am
- Forum: RVMedia
- Topic: Memory High on RVMedia
- Replies: 2
- Views: 20420
Re: Memory High on RVMedia
Good Morning
Solved problem.
Grateful
var ImageWrapper: TRVImageWrapper;
begin
try
ImageWrapper := RVCamera.GetSnapShot;
Image.Picture.Graphic := ImageWrapper.Bitmap.GetBitmap;
ImageWrapper.Free;
EXCEPT
end;
Solved problem.
Grateful
var ImageWrapper: TRVImageWrapper;
begin
try
ImageWrapper := RVCamera.GetSnapShot;
Image.Picture.Graphic := ImageWrapper.Bitmap.GetBitmap;
ImageWrapper.Free;
EXCEPT
end;
- Wed Apr 13, 2022 7:38 pm
- Forum: RVMedia
- Topic: Memory High on RVMedia
- Replies: 2
- Views: 20420
Memory High on RVMedia
I use RVMedia to make a stream and capture the image with GetCurrentImage and put it in a TIMAGE.
When performing the process, the system increases the memory. Using ReportMemoryLeaksOnShutdown := True;, returns the attached image.
If I don't use the process, no error happens.
When performing the process, the system increases the memory. Using ReportMemoryLeaksOnShutdown := True;, returns the attached image.
If I don't use the process, no error happens.