distinctive image features from scaleinvariant keypoints matlab code

Tài liệu Distinctive Image Features from Scale-Invariant Keypoints David G. Lowe Computer Science Department ppt

Tài liệu Distinctive Image Features from Scale-Invariant Keypoints David G. Lowe Computer Science Department ppt

Ngày tải lên : 13/12/2013, 16:15
... Keypoints from the reduced resolution image were matched against those from the original image so that the scales for all keypoints would be be present in the matched image. In addition, 1% image ... leftmost point is matching against features from only a single image while the rightmost point is selecting matches from a database of all features from the 112 images. It can be seen that matching ... at least 3 features be correctly matched from each object for reli- able identification. For image matching and recognition, SIFT features are first extracted from a set of ref- erence images and...
  • 28
  • 502
  • 0
Ebook - (Ferreira, 2009) MATLAB codes for finite element analysis

Ebook - (Ferreira, 2009) MATLAB codes for finite element analysis

Ngày tải lên : 06/01/2014, 22:09
... the book. A deeper study of MATLAB can be obtained from many MATLAB books and the very useful help of MATLAB. 1.2 Matrices Matrices are the fundamental object of MATLAB and are particularly important in ... stresses (post-processing) 2.5 First problem and first MATLAB code To illustrate some of the basic concepts, and introduce the first MATLAB code, we consider a problem, illustrated in figure 2.2 ... F-norm, ∞-norm cond Conditioning number of 2-norm rank Rank of a matrix 2.6 New code using MATLAB structures 31 This code calls solutionStructure.m which computes displacements by eliminating lines...
  • 236
  • 404
  • 0
Prevention of Environmental Pollution From Agricultural Activity: A CODE OF GOOD PRACTICE pot

Prevention of Environmental Pollution From Agricultural Activity: A CODE OF GOOD PRACTICE pot

Ngày tải lên : 15/03/2014, 16:20
... is scraped, contaminated wash water from milking parlours and washdown (dairy, pig and poultry buildings), and drainage from traditional byres. 4.19 Drainage from high-level slatted buildings is ... expected to follow will be based on existing Codes, such as this PEPFAA Code, and on recognised good practice. 2 DIFFUSE AGRICULTURAL POLLUTION 7 pollution from corrals or stand-off pads. This will ... a distance more than 10m from any inland or coastal water. l 50m from any well, borehole etc for the purpose of any water supply (except domestic water supply). l 250m from any well, borehole...
  • 147
  • 459
  • 0
Still Image and Video Compression with MATLAB pptx

Still Image and Video Compression with MATLAB pptx

Ngày tải lên : 24/03/2014, 01:21
... Come 2.2 SAMPLING A CONTINUOUS IMAGE 31 M = 32; % image pulse width M1 = N/2 - M + 1; % image beginning point M2 = N/2+M; % image end point f(M1:M2,M1:M2) = 1; % test image has a value 1 % p = zeros(N,N); ... TRANSFORMS For an image of size N × N pixels, a unitary transform implies that the image can be represented as a linear combination of N 2 basis images. These basis images may be independent of the image ... basis images, we then calculate the MSE between the original image and the reconstructed image. To visualize the difference in the quality of the reconstructed image, we use 1 and 13 basis images...
  • 442
  • 1K
  • 2
Calling C from MATLAB

Calling C from MATLAB

Ngày tải lên : 29/09/2013, 21:20
... like printf in C mexErrMsgTxt like MATLAB s error statement mexFunction the gateway routine from MATLAB You will note that all of the references to MATLAB s mx and mex routines are ... 59 9.4 MATLAB mx and mex routines In the last example, the C routine calls several MATLAB routines with the prefix mx or mex . Routines with mx prefixes operate on MATLAB matrices ... can be accelerated, writing code that has no for or while loops is still important. As you become practiced in writing without loops and reading loop-free MATLAB code, you will also find...
  • 8
  • 361
  • 0
Calling Fortran from MATLAB

Calling Fortran from MATLAB

Ngày tải lên : 29/09/2013, 21:20
... MATLAB Command window, as in: !javac myreader.java Now that you have your own Java method, you can call it from MATLAB just as the java.lang.String and javax.crypto.* methods. In the MATLAB ... your own Java classes that you can call from MATLAB, you must first download and install the Java 2 SDK (Software Development Kit) Version 1.4 (or later) from java.sun.com. Edit your operating ... Place this file in one of the directories in your MATLAB path, or in the directory in which you launch MATLAB, and it will be executed whenever MATLAB starts. 11.4 Calling your own Java methods...
  • 17
  • 304
  • 0
Displaying an Image from a Database in a Web Forms Control

Displaying an Image from a Database in a Web Forms Control

Ngày tải lên : 28/10/2013, 18:15
... need to display an image from a database column in an ASP.NET control. Solution Fill an ASP.NET Image control from a database field by pointing the ImageUrl property of an Image control to a ... retrieves the image from the database. The solution contains three files: the Web Forms page to display the image, its code- behind file, and the code- behind page that serves the image. The Web ... sample code displays the employee image in the Image control employeeImage. The code for the Web Forms page is shown in Example 7-13 . Example 7-13. File: ADOCookbookCS0707.aspx <asp:Image...
  • 3
  • 442
  • 0
Displaying an Image from a Database in a Windows Forms Control

Displaying an Image from a Database in a Windows Forms Control

Ngày tải lên : 28/10/2013, 18:15
... Recipe 7.8 Displaying an Image from a Database in a Windows Forms Control Problem You need to display an image from a database in a Windows Forms control. Solution Read the image into a byte array ... MemoryStream object is created from the Byte array. The static FromStream( ) method of the System.Drawing .Image class is used to load the image into the PictureBox from the MemoryStream. Move ... or icon images. In the solution, the image stored as a BLOB in the database is retrieved into a Byte array, which is in turn copied into a System.IO.MemoryStream object. The static FromStream(...
  • 5
  • 391
  • 0
Module 4: Separating Code from Content

Module 4: Separating Code from Content

Ngày tải lên : 04/11/2013, 16:15
... had to intermingle code and HTML, but in ASP.NET there are a number of ways to separate the code in your application from the content. 22 Module 4: Separating Code from Content BETA ... Lead-in In this module, you will learn about separating code from content by creating code- behind pages. 14 Module 4: Separating Code from Content BETA MATERIALS FOR MICROSOFT CERTIFIED ... separating code from content. ! Creating and Using Code- Behind Pages You can design your application in a manner such that the code resides in a separate file (referred to as the " ;code- behind"...
  • 30
  • 355
  • 0