Example Based Single-frame Image Super-resolution by Support Vector Regression

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Example Based Single-frame Image Super-resolution by Support Vector Regression
# 1  
Old 10-23-2010
Example Based Single-frame Image Super-resolution by Support Vector Regression

HPL-2010-157 Example Based Single-frame Image Super-resolution by Support Vector Regression - Li, Dalong; Simske, Steven
Keyword(s): Support Vector Regression, single-frame image super-resolution, ill-posed problem, example-based, machine learning
Abstract: As many other inverse problems, single-frame image super-resolution is an ill-posed problem. The problem has been approached in the context of machine learning. However, the proposed method in this paper is different from other learning based methods regarding how the input/output are formulated as ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Need support to frame the output in line by line

Hi I run the command "x" and the output looks like this a;b;c;d;e;f;g;h;i;j;k;l; but how can i get the output as below a b c d e f g h pleae help me in this... (4 Replies)
Discussion started by: kumar85shiv
4 Replies

2. UNIX for Dummies Questions & Answers

Order based on timestamp in a single file

Hi All, I have a large text file which is a combination of multiple files. This is what I used and it worked. for i in /home/docs/text/* do cat $i >> Single_File done Now wondering, if there is a way to sort that single large file based on timestamps in ascending order. Text file... (11 Replies)
Discussion started by: prrampalli
11 Replies

3. UNIX for Dummies Questions & Answers

Remove duplicate rows when >10 based on single column value

Hello, I'm trying to delete duplicates when there are more than 10 duplicates, based on the value of the first column. e.g. a 1 a 2 a 3 b 1 c 1 gives b 1 c 1 but requires 11 duplicates before it deletes. Thanks for the help Video tutorial on how to use code tags in The UNIX... (11 Replies)
Discussion started by: informaticist
11 Replies

4. Shell Programming and Scripting

remove duplicates based on single column

Hello, I am new to shell scripting. I have a huge file with multiple columns for example: I have 5 columns below. HWUSI-EAS000_29:1:105 + chr5 76654650 AATTGGAA HHHHG HWUSI-EAS000_29:1:106 + chr5 76654650 AATTGGAA B@HYL HWUSI-EAS000_29:1:108 + ... (4 Replies)
Discussion started by: Diya123
4 Replies

5. Shell Programming and Scripting

duplicate row based on single column

I am a newbie to shell scripting .. I have a .csv file. It has 1000 some rows and about 7 columns... but before I insert this data to a table I have to parse it and clean it ..basing on the value of the first column..which a string of phone number type... example below.. column 1 ... (2 Replies)
Discussion started by: mitr
2 Replies

6. HP-UX

BAD SUPER BLOCK - Run fsck with alternate super block number

Error received when I tried to restore a blank disk with an 'auto recovery' DDS tape via HP-UX recovery system 2.0 onto a 1Gb SCSI. I assumed it would do the setup, wrong. Could someone tell me the procedure to initial disk for recovering files using cpio. The system is a HP-UX 9.04 version on a... (1 Reply)
Discussion started by: admin wanabee
1 Replies
Login or Register to Ask a Question
tile(n) 						       BLT Built-In Commands							   tile(n)

__________________________________________________________________________________________________________________________________________________

NAME
tile - Tiling versions of Tk widgets SYNOPSIS
tile::button pathName option value... tile::checkbutton pathName option value... tile::frame pathName option value... tile::label pathName option value... tile::radiobutton pathName option value... tile::scrollbar pathName option value... tile::toplevel pathName option value... _________________________________________________________________ DESCRIPTION
The tile widgets let you create textured backgrounds. The texture is a Tk image which is tiled over the entire background of the widget. INTRODUCTION
With the advent of Tk 4.0, images are now easy to create and use in applications. Images add interest to applications and they convey more information. But one area where Tk hasn't taken advantage of images is using images as textures for widgets. Since tiling is a standard feature of windowing systems, it's very easy to use images as textures. The tile widgets take the standard Tk 4.0 widgets and add tiling configuration options to them. Textures are specified by the name of the image you wish to be tiled across the background of the widget. EXAMPLE
To add tiling to a widget, you simply create an image using Tk's image command and use the image name as the value for the -tile configura- tion option of the widget. image create photo my_texture -file tan_paper.gif blt::tile::frame .f -tile my_texture The image my_texture is added to the frame. If my_texture is updated, so will the widget background. image create photo my_texture -file rain.gif The tile widget commands reside in the "blt::tile" namespace, so as not to collide with the normal Tk widgets. An easy way to add tiling to existing programs is to import the tile widget commands into the global namespace. image create photo my_texture -file tan_paper.gif namespace import -force blt::tile::* frame .f -tile my_texture To use one image for all texturing, you can use the "Tile" option class name to specify the same image for all tile widgets. image create photo my_texture -file tan_paper.gif option add *Tile my_texture OPTIONS
The following configurations options are added to the widgets. If a -tile or -activetile option is specified, it overrides the background color of the widget. -activetile image Specifies a textured background to display when the widget is active. This option is available for the tilebutton, tilecheckbutton, tileradiobutton, and tilescrollbar widgets. Image is the name an image created using Tk's image command. The background of the widget is tiled with image. If image is "", then the active background color is displayed. The default is "". -tile image Specifies a textured background to display for the widget. Image is the name an image created using Tk's image command. The back- ground of the widget is tiled with image. If image is "", then the normal background color is displayed. The default is "". KEYWORDS
tile, texture, button, label, radiobutton, checkbutton, scrollbar, frame, toplevel BLT
2.4 tile(n)