I am working on a real estate website and i would like to write a program that
can figure out(classify) if an image is a floor plan or a company logo.
Since i am writing in php i will prefer a php solution but any c++ or opencv solution will be fine as well.
Floor Plan Sample:
Logo Sample:
...
Hi all,
I'm developing an image editing application for iphone. I've seen many questions similar to mine, but couldn't find a relevent answer. I have generated the pixel data as,
NSData* pixelData = (NSData*)CGDataProviderCopyData(CGImageGetDataProvider(originalImage.CGImage));
Now, i need to get the component values (alpha,R,G,B) fro...
Hi, I am trying to set source for Img tag using Javascript at button click. The problem which i m facing is that the I cannot see the Image in IE 6 but it works in FireFox. I browsed and tried few solutions like load the image in page load(Document load) itself or set a timer, but nothing works consistently. This problem also not consis...
Hi,
i have two bitmaps in code (.NET). I'd like to search for the small pattern (needle) in the big image (haystack). How can this be done?
...
I am programming, for cross-platform C, a library to do various things to webcam images. All operations are per-pixel and highly parallelizable - for example applying bit masks, multiplying color values by constants, etc. Therefore I think I can gain performance by using SSE/SSE2 intrinsics.
However, I am having a data format problem....
I am interested in doing some image-hacking apps. To get a better sense of expected performance can someone give me some idea of the overhead of touching each pixel at fullscreen resolution?
Typical use case: The use pulls a photo out of the Photo Album, selects a visual effect and - unlike a Photoshop filter - gestural manipulation of ...
Hello;
I have yuv sequences and I want to convert it to bmp images.And I want to save it to folder on my computer.
I used yuv2bmp m file in http://www.mathworks.com/matlabcentral/fileexchange/25563-convert-420-yuv-to-bmp .
Altough Yuv file is 44MB, unfortunately Matlab gave memory error.
How can I overcome of this problem? Could you ...
I am working on applying artistic effects to image .
Can you please tell me how to achieve this effect ?
Any inputs are appreciated .....
Input Image :
http://www.flickr.com/photos/vineet%5Faggarwal/4205359333/
Output Image:
http://www.flickr.com/photos/vineet%5Faggarwal/4205359335/,
...
Hello
I am trying to functions:
1. imagecreatefrompng 2. imagepng
my php code looks like this:
<?php
ini_set('memory_limit', -1);
try{
//if(!$image=imagecreatefromjpeg('zee3.jpg')){
if(!$image=imagecreatefrompng('leo.png')){
throw new Exception('Error loading image');
}
imagepng($image, 'leoAfter_9compression1.png...
I'm writing a library to process gaze tracking in Python, and I'm rather new to the whole numpy / scipy world. Essentially, I'm looking to take an array of (x,y) values in time and "paint" some shape onto a canvas at those coordinates. For example, the shape might be a blurred circle.
The operation I have in mind is more or less identi...
Have www.website.com/sds/ (index.htm) set up so that a mouseover on various places shows an image.
For some reason image 2.jpg and 3.jpg (move mouse back and forth on blue balloon) are both showing up (not at same time) when you mouse over the blue balloon. Only 3.jpg (child in chair) should show up on the blue balloon.
2.jpg (found on ...
How to create a TIFF file in PHP?
I want create a TIFF file and fax it.
I know how to fax it but I don`t know how to create a TIFF file.
...
I do not know how to determine the top of the needle of the clock. If you determine the coordinates of them, I can think of the time of the clock.
Please help me solve this problem. Thank you very much!
...
Given an Image object, how do I turn that into a BufferedImage object without using any of the graphics stuff?
Thanks.
(P.S. I'm using Java ImageIO library)
...
I'm trying to understand the effect of the Block Size and best strategy of choosing the Coefficients in DCT compression.
Basically I want to ask what I wrote here:
http://stackoverflow.com/questions/4582/video-compression-what-is-discrete-cosine-transform/1948138#1948138
Lets assume the most primitive compression. Making block of an im...
please help me to segment a image in binary image...
more clearly,
i got a image from background subtraction, which is binary...means, the object area is of white color and non object object is black..now problem is how to label that white area?
i m using c#.net.
...
Is there an easy and fast OpenCV solution that will convert a set of CvPoint vertices defining a polygon, to a contour with many more vertices?
I have simple polygons in one space, and I want to transform the polygons into another space, where straight lines will become curvy. Thus its important that I add more vertices to my straight l...
I am building a real-time closed-loop image processing application. I waste at least 3ms using cvSmooth():
cvSmooth(Obj->ImgOrig,Obj->ImgSmooth,CV_GAUSSIAN,Params->GaussSize*2+1);
This ends up being the single slowest operation in my entire code. I want to be able to blur my image to varying amounts depending on user input before thre...
I have a gray-scale image and I want to make a function that
closely follows the image
is always grater than it the image
smooth at some given scale.
In other words I want a smooth function that approximates the maximum of another function in the local region while over estimating the that function at all points.
Any ideas?
My...
Is there's a way to generate polygonal thumbnails in PHP? (ImageMagick, GD, etc)
Here is an example of what I want to achieve: http://www.area105.com/gallery/shme/thumb1.png
...