Search found 4 matches

by cueiogordo
Mon Jul 04, 2022 8:05 pm
Forum: RVMedia
Topic: Motion Detector
Replies: 1
Views: 17007

Motion Detector

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
by cueiogordo
Tue May 17, 2022 7:58 pm
Forum: RVMedia
Topic: Parameters.Alias
Replies: 2
Views: 17331

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];
by cueiogordo
Thu Apr 14, 2022 11:52 am
Forum: RVMedia
Topic: Memory High on RVMedia
Replies: 2
Views: 16595

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;
by cueiogordo
Wed Apr 13, 2022 7:38 pm
Forum: RVMedia
Topic: Memory High on RVMedia
Replies: 2
Views: 16595

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.