|
What library can you recommend to capture image from a webcam in .Net?
Answer Snippets (Read the full thread at stackoverflow):
Look at this question here
Windows Image Acquisition does the trick.
DirectShow is pretty good.
|
|
Does anyone know of a c++ library for taking an image and performing image recognition on it such that it can find letters based on a given font and/or font height? Even one that doesn't let you select a font would be nice (eg: readLetters(Image image...
Started by Zombies on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Basically I had to do a lot of preprocessing....
From there web to being able to detect position of text on the image and do things like line segmentation, block sharing.
There is tesseract-ocr which is a professional library to do this.
Recognition).
|
|
In my iphone app, I am linking with a static library containing objective c files and images. Is it possible to load an image from a static library? I have tried
[UIImage imageNamed:[[NSBundle mainBundle] pathForResource:@"imageName" ofType:@"png"]];
...
Started by zaccox on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you link a static library, the code from the library....
Static libraries are directory hierarchies (containing executables and other resources).
It's not clear what you mean by "the image is [...] in the static library".
|
Ask your Facebook Friends
|
How do I fix this?
dyld: Library not loaded: /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation Referenced from: /Users/[...]/Library/Application Support/iPhone Simulator/User/Applications/[...]/TestGame.app/TestGame Reason: image...
Started by Elliot on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
System/Library/Frameworks/AVFoundation.framework/
Replace the iPhone SDK version with whatever you.
|
|
What is the best way to display underlined text and output the result as image with GD or any other library?
Started by Lost_in_code on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Type: image/png'); // Create the image $im = imagecreatetruecolor(400, 30); // Create some colors.
|
|
Is there a free (or commercial) PHP library which would help me convert a piece of HTML to image?
I googled it but haven't found anything.
thanks in adv
Started by Goran on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try this and let us all know :)
if you use the gd library you can use imagettftext function http the installation instructions for GD library at http://www.php.net/manual/en/image.installation.php
For example
$htmlstring = "<h1>Test....
|
|
I have a custom webpart that is displaying dynamic list data, it needs to render an image from a Picture Library (or at least provide me the URL so I can encapsulate it with an tag), however, none of the fields in the Picture Library seem to contain the...
Started by Ryan Eastabrook on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Assuming you are using the object model then the you should use this (c#)
SPListItem["EncodedAbsUrl"]
to get the HTML encoded absolute URL of the image (where " EncodedAbsUrl (they appear to return the same)
You can ....
URL for the image.
|
|
Does anybody have a suggestion for a java library that performs automatic cropping and deskewing of images (like those retrieved from a flatbed scanner)?
Started by Chris Rauber on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I've written....
You could try Imaging API.
If you can figure out that someone has built a library on top of the Java Advanced Imaging API for doing this.
Significant image processing; I'm not sure if ImageMagick can handle that.
|
|
System.Drawing has supports for very limited number of image formats
What I am trying to do is, given an image of some format(JPG, TIFF, GIF, or PDF), conver them to other formats.
I am specifically looking for a free or an open-source versions of library...
Started by Sung Meister on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you need a free library.
What about ImageMagick ?
PDF isn't exactly an image format.
|
|
Hello,
I need to some extra functionalities to a website regarding image handling.
The user must be able to pane, zoom and rotate images on a image gallery.
Is there any free javascript library/framework that handles this actions?
Started by Sergio on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Raphaël—JavaScript Library
is a good one
Raphaël is a small JavaScript library specific chart or image crop and rotate widget, for example, you can achieve it simply and easily with this library....
As this is an area I am new at.
|