face distortion
i want to do aface distortion effect to an existing human photo picture in objc any example or tutorial anybody can point to ? ...
i want to do aface distortion effect to an existing human photo picture in objc any example or tutorial anybody can point to ? ...
For this picture: Draw histogram of R, G, B components of color (not using imhist) Change picture to binary so brown exoskeleton of insect is white Measure insect's exoskeleton's width and height EDIT: 1: I did that: a = imread('C:\a.jpg'); r = a(:,:,1); g = a(:,:,2); b = a(:,:,3); rhist = zeros(1,256); [w h] = size(a(:,:,1)); fo...
Hi I am working on a C# .net app for windows mobile. Problem is, I am a web developer, this is the first ever for me to write code for a desktop app, and to make things worse, I even have to work using the CF. I have this problem: I need to use buttons (System.Windows.Forms.Button) but I don't know if I can use a nice picture for the b...
I have: img = imread('pic.jpg','jpg'); r = img(:,:,1); g = img(:,:,2); b = img(:,:,3); figure, imshow(r); figure, imshow(g); figure, imshow(b); How to set title over each picture? ...
Hi everyone! I'm currently trying to create a gallery of pictures loaded from Internet. I'm using a standard Gallery object, with a custom adapter and a custom ImageView. Everything is working quite fine, expect for the pictures downloading. I'm using an asynchronous task to do this (I have thumbnails displaying while loading). It's ...
I have a report in MS Access with 4 image controls. In the format event of the detail section I have code that sets the picture property based on the values of fields in DAO.recordset. Below is an example of my code. For i = 0 To 3 If Not rs.EOF Then Me.Controls("img" & i).Picture = blobGet(rs!phBlobId) rs.MoveNext ...