Search found 16 matches

by greenware
Tue Mar 05, 2013 4:55 pm
Forum: Feature Requests
Topic: Chroma Key Edge Detection
Replies: 5
Views: 6399

Re: Chroma Key Edge Detection

Just checked the v9 medium release notes and didn't see this added. Any idea when this will be implemented?
by greenware
Tue Jun 12, 2012 8:30 pm
Forum: Feature Requests
Topic: Chroma Key Edge Detection
Replies: 5
Views: 6399

Re: Chroma Key Edge Detection

Just checking to see if this is in the works yet. thanks.
by greenware
Tue Jun 12, 2012 8:27 pm
Forum: Document Viewing
Topic: Sort Order for Thumbnail viewer?
Replies: 1
Views: 10687

Sort Order for Thumbnail viewer?

Is there a way to specify a sort order when loading images from a folder? for example, by file name, file date, file size, ....
by greenware
Sun Feb 19, 2012 12:28 am
Forum: Image Processing & Document Imaging
Topic: Zooming out on an image
Replies: 5
Views: 5204

Re: Zooming out on an image

Sorry, didn't mean to sound like I was complaining. Very much the opposite as I'm very impressed with your product. What I''m trying to ask is how do I perform a certain function - if possible. So please forget everything else and I'll try again. I have a need to scale down a foreground image to be ...
by greenware
Fri Feb 17, 2012 6:24 pm
Forum: Image Processing & Document Imaging
Topic: Zooming out on an image
Replies: 5
Views: 5204

Re: Zooming out on an image

Sorry, let me try to explain more clearly. I have a gdViewer on a form with a picture in it. ImageSrc = oGdPictureImaging.CreateGdPictureImageFromFile(sFileName) gdViewer.ZoomMode = ViewerZoomMode.ZoomModeWidthViewer gdViewer.MouseMode = ViewerMouseMode.MouseModePan gdViewer.MouseWheelMode = ViewerM...
by greenware
Fri Feb 17, 2012 12:49 am
Forum: Image Processing & Document Imaging
Topic: Zooming out on an image
Replies: 5
Views: 5204

Zooming out on an image

I have a GDViewer (overlaying a background image) and zooming out on the forground image to make the image smaller. I need to both pan the foreground image to position it over the background as well as save the image from the viewer. I have no problem when zooming in on the image using the GetDispla...
by greenware
Wed Feb 15, 2012 6:17 pm
Forum: Feature Requests
Topic: Chroma Key Edge Detection
Replies: 5
Views: 6399

Chroma Key Edge Detection

I mentioned this in the support forums but I'll add it here as a request also. The green (red/blue) screen ablility you have works great except for the area around hair and edges. To make it perfect, if you could add the ablity to detect edges and process those differently to blend with the backgrou...
by greenware
Wed Feb 15, 2012 6:07 pm
Forum: Image Processing & Document Imaging
Topic: Resize image to bounding box and maintain aspect
Replies: 1
Views: 3258

Re: Resize image to bounding box and maintain aspect

Just calculate the ratios of the bounding box and the image to determine which method to call.

' Bounding Box
h1 = 100
w1 = 100

'Image
h2 = 200
w2 = 100

r1 = h2/h1 ' = 2
r2 = w2/w1 ' = 1

if r1 >= r2 then
'use ResizeHeightRatio
else
'use ResizeWidthRatio
end if
by greenware
Wed Feb 15, 2012 5:55 pm
Forum: Image Processing & Document Imaging
Topic: Chroma Key (green screen) Edges
Replies: 4
Views: 5003

Re: Chroma Key (green screen) Edges

I received an email from Sami that you will be able to add something to do this in the future. Is there any way I can be notified when you begin working on this and when it is completed? This issue has turned into a real stumbling block for my client. thanks. Hi John, Unfortunately, we do not have s...
by greenware
Tue Feb 07, 2012 5:05 pm
Forum: Image Processing & Document Imaging
Topic: Print a selected portion of an image
Replies: 3
Views: 3809

Re: Print a selected portion of an image

I think this might be what you are looking for (if I understand what you are asking): dim iHeightPixel as integer = 5 * 300 'set to 5 inches at 300 dpi oGdPictureImaging.ResizeHeightRatio(ImageArea , iHeightPixel, Drawing2D.InterpolationMode.HighQualityBicubic) or use oGdPictureImaging.ResizeWidthRa...
by greenware
Mon Feb 06, 2012 12:49 am
Forum: Image Processing & Document Imaging
Topic: Chroma Key (green screen) Edges
Replies: 4
Views: 5003

Re: Chroma Key (green screen) Edges

Attached image shows what I'm talking about.

I'm guessing they have some algorithm that detects the edges around the "green" and does some sort of anti-alias before removing the green color.
greenscreen1.jpg
Thanks.
by greenware
Fri Feb 03, 2012 8:36 pm
Forum: Image Processing & Document Imaging
Topic: Chroma Key (green screen) Edges
Replies: 4
Views: 5003

Chroma Key (green screen) Edges

I'm removing the green from an image and overlaying it on a background and everything is working great -- except for the edges - especially around the hair. I've seen some other green screen software apply some "fuzzy/Blurring" to the edges to blend it better. Is there some method that thi...
by greenware
Mon Jan 16, 2012 9:02 pm
Forum: Customer Reviews
Topic: Happy Customer
Replies: 1
Views: 23605

Happy Customer

I just wanted to say how happy I am with this product and your service. I've had a couple things I needed that I couldn't figure out how to make happen and within a couple days of notifying you on each instance, you had an update for me. The more I get into this control and see what all it can do, t...
by greenware
Mon Jan 16, 2012 8:55 pm
Forum: Document Viewing
Topic: Scroll to last added thumbnail
Replies: 6
Views: 17407

Re: Scroll to last added thumbnail

Perfect!! You guys are great!!
by greenware
Wed Jan 11, 2012 10:50 pm
Forum: Document Viewing
Topic: Scroll to last added thumbnail
Replies: 6
Views: 17407

Re: Scroll to last added thumbnail

Thanks! That will help immensely.