Perceptual Segmentation: Combining Image Segmentation with Object Tagging


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Perceptual Segmentation: Combining Image Segmentation with Object Tagging
# 1  
Old 10-30-2008
Perceptual Segmentation: Combining Image Segmentation with Object Tagging

HPL-2008-185 Perceptual Segmentation: Combining Image Segmentation with Object Tagging - Bergman, Ruth; Nachlieli, Hila; Ruckenstein, Gitit; Shaw, Mark; Bhaskar, Ranjit
Keyword(s): object detection, image tagging, skin detection, sky detection, foliage detection
Abstract: Most consumers do not want to edit their images, either because they do not have the time, or they do not have the know how. They do want to be able to press a button that will magically make the objects captured in their photo look better. At the heart of enabling such functionality, lay image anal ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

C. To segmentation fault or not to segmentation fault, that is the question.

Oddities with gcc, 2.95.3 for the AMIGA and 4.2.1 for MY current OSX 10.14.1... I am creating a basic calculator for the AMIGA ADE *NIX emulator in C as it does not have one. Below are two very condensed snippets of which I have added the results inside the each code section. IMPORTANT!... (11 Replies)
Discussion started by: wisecracker
11 Replies

2. Solaris

Segmentation fault

Hi Guys, I just installed and booted a zone called testzone. When I logged in remotely and tried changing to root user I get this error: "Segmentation fault" Can someone please help me resolve this? Thanks alot (2 Replies)
Discussion started by: cjashu
2 Replies

3. Programming

Using gdb, ignore beginning segmentation fault until reproduce environment segmentation fault

I use a binary name (ie polo) it gets some parameter , so for debugging normally i do this : i wrote script for watchdog my app (polo) and check every second if it's not running then start it , the problem is , if my app , remain in state of segmentation fault for a while (ie 15 ... (6 Replies)
Discussion started by: pooyair
6 Replies

4. Programming

segmentation fault

What is segmentation fault(core dumped) (1 Reply)
Discussion started by: gokult
1 Replies

5. UNIX for Dummies Questions & Answers

Segmentation Fault

Hi, While comparing primary key data of two tables thr bteq script I am getting this Error. This script is a shell script. *** Error: The following error was encountered on the output file. Script.sh: 3043492 Segmentation fault(coredump) Please let me know how to get through it. ... (5 Replies)
Discussion started by: monika
5 Replies

6. Programming

Why not a segmentation fault??

Hi, Why I don't receive a segmentation fault in the following sample. int main(void) { char buff; sprintf(buff,"Hello world"); printf("%s\n",buff); } If I define a buffer of 10 elements and I'm trying to put inside it twelve elements, Should I receive a sigsev... (22 Replies)
Discussion started by: lagigliaivan
22 Replies

7. Programming

Combining Strings - Segmentation Fault

I am writing a function to combine strings, but when I execute I get a segmentation fault, which doesn't make sence. Segmentation fault is when you try to acess a point of memory that doesn't exist, like trying to acess array when you declared array. Here is the source code: #include <stdio.h>... (15 Replies)
Discussion started by: Octal
15 Replies

8. Programming

segmentation fault

sometimes for this code i get a segmentation fault for codes llike this : int main{ int * a= 0; int b; a = (int*)malloc(sizeof(int)); ///some code using these variable but no freeing of a if(a){ free(a); a = 0; } return... (3 Replies)
Discussion started by: wojtyla
3 Replies

9. AIX

Segmentation fault

I am tring to install Lotus Domino/Notes 5.0.5 on a AIX 4.3.3 server. I go to run the cdrom/ibmpow/install and I get the following error. Lotus Notes for Unix Install Program --------------------------------------------- ./install: 10088 Segmentation fault This had Lotus Notes installed... (1 Reply)
Discussion started by: jshaulis
1 Replies
Login or Register to Ask a Question
Gtk2::Gdk::Image(3pm)					User Contributed Perl Documentation				     Gtk2::Gdk::Image(3pm)

NAME
Gtk2::Gdk::Image - wrapper for GdkImage DESCRIPTION
A "Gtk2::Gdk::Image" is a 2-D array of pixel values in client-side memory. It can optionally use shared memory with the X server for fast copying to or from a window or pixmap. If you're thinking of using this then look at "Gtk2::Gdk::Pixbuf" first. GdkPixbuf has many more features, in particular file read and write (PNG, JPEG, etc). But a GdkImage lets you work directly in pixel values instead of expanding to RGB components. See Gtk2::Gdk::Drawable for "draw_image", "get_image" and "copy_to_image" methods to draw or fetch images to or from a window or pixmap. The various "get" methods are Gtk 2.22 style. For previous versions they're direct field access. HIERARCHY
Glib::Object +----Gtk2::Gdk::Image METHODS
image or undef = Gtk2::Gdk::Image->new ($type, $visual, $width, $height) o $type (Gtk2::Gdk::ImageType) o $visual (Gtk2::Gdk::Visual) o $width (integer) o $height (integer) integer = $image->get_bits_per_pixel byteorder = $image->get_byte_order integer = $image->get_bytes_per_line integer = $image->get_bytes_per_pixel colormap = $image->get_colormap $image->set_colormap ($colormap) o $colormap (Gtk2::Gdk::Colormap) integer = $image->get_depth integer = $image->get_height imagetype = $image->get_image_type unsigned = $image->get_pixel ($x, $y) o $x (integer) o $y (integer) string = $image->get_pixels() Return a copy of the raw pixel data memory from $image. This is "bytes_per_line * height" many bytes. $image->put_pixel ($x, $y, $pixel) o $x (integer) o $y (integer) o $pixel (unsigned) visual = $image->get_visual integer = $image->get_width ENUMS AND FLAGS
enum Gtk2::Gdk::ByteOrder o 'lsb-first' / 'GDK_LSB_FIRST' o 'msb-first' / 'GDK_MSB_FIRST' enum Gtk2::Gdk::ImageType o 'normal' / 'GDK_IMAGE_NORMAL' o 'shared' / 'GDK_IMAGE_SHARED' o 'fastest' / 'GDK_IMAGE_FASTEST' SEE ALSO
Gtk2, Glib::Object COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::Gdk::Image(3pm)