Source Code

OpenIMAJ _ Code _ [r254] _trunk_demos_VideoSIFT_src_main_java_org_openimaj_demos_video_videosift_Vid
OpenIMAJ _ Code _ [r254] _trunk_demos_VideoSIFT_src_main_java_org_openimaj_demos_video_videosift_Vid * Copyright (c) 2011, The University of Southampton and the individual contributors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are …[ More ]
using package smslib for sending and receiving sms by a modem, i want help regarding the parameters
code for sending messages// i have imported smslibpackage examples.modem;import org.smslib.AGateway;import org.smslib.IOutboundMessageNotification;import org.smslib.Library;import org.smslib.OutboundMessage;import org.smslib.Service;import org.smslib.modem.SerialModemGateway;public class SendMessage…[ More ]
Programmers Convert PDF to SWF
Programmers  Convert PDF to SWFHere sample code snippet - private static String Pdf2SwfExecutablePath="C:\\Program Files\\SWFTools\\pdf2swf.exe"; private ByteArrayOutputStream convertPdfToSwf(ByteArrayOutputStream pdfOutput) throws IOException {    ByteArrayOutputStream swfByte = new ByteAr…[ More ]
Java OCR implementation
Java OCR implementationpackage com.github.axet.lookup;import java.io.File;import com.github.axet.lookup.common.ImageBinaryGrey;publicclassOCRTest{staticpublicvoid main(String[] args){ OCR l =new OCR(0.70f);// will go to com/github/axet/lookup/fonts folder and load all font// familys (here i…[ More ]
Java OCR _ git _ [5cb9b4] _plugins_awt_src_main_java_net_sourceforge_javaocr_ocrPlugins_OCRDemo_OCRS
Java OCR _ git _ [5cb9b4] _plugins_awt_src_main_java_net_sourceforge_javaocr_ocrPlugins_OCRDemo_OCRSCopyright (c) 2003-2012, Ronald B. Cemer , Konstantin Pribluda, William Whitney, Andrea De Pasquale**** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file excep…[ More ]
Tess4J
Tess4J Code SamplesThe following code example shows common usage of the library. Make sure *.dll and tessdata folder are in the same directory and the .jar files are in the classpath.package net.sourceforge.tess4j.example;import java.io.File;import net.sourceforge.tess4j.*;public class TesseractExa…[ More ]
Reading a pgm file in Java
  Reading a pgm file in JavaI need to read a pgm file and store the array of values contained in it in a 2D array. In PGM format, each pixel is specified by a gray value between 0 and MaxVal. The first three lines give information related to the image: magic number, height, width and maxVal. The fil…[ More ]
SurfExample
SurfExamplepackage SURF;importstatic com.googlecode.javacv.jna.highgui.*;importstatic com.googlecode.javacv.jna.cxcore.*;importstatic com.googlecode.javacv.jna.cv.*;importstatic com.googlecode.javacv.jna.cv.v11or20.*;import java.awt.geom.Arc2D.Float;import java.util.Vector;import com.googlecode.java…[ More ]
Object Finder
Object Finder * Copyright (C) 2009,2010,2011,2012 Samuel Audet * * This file is part of JavaCV. * * JavaCV is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License,…[ More ]
How to compare images for similarity using java
How to compare images for similarity using java1 Recently I got an opportunity to work with Image Processing Technologies as a part of one of my projects and my task was to find matching images from an image store when a new image is given. I started my project with googling "How to compare images u…[ More ]
Java Socket Programming Examples
Java Socket Programming Examples Although most programmers probably do network programming using a nice library with high-level application protocol (such as HTTP) support built-in, it's still useful to have an understanding of how to code at the socket level. Here are a few complete exampl…[ More ]
The homography tutorial in java
The homography tutorial in javaCODEclassFindObject{
  publicvoid run(String pathObject,String pathScene,String pathResult){System.out.println("\nRunning FindObject");Mat img_object =Highgui.imread("D:/workspaceSeirich/HelloCV/".concat(pathObject),0);//0 = CV_LOAD_IMAGE_GRAYSCALE…[ More ]
public emchristiansen / OpenCVJavaDemo
public emchristiansen / OpenCVJavaDemo

import org.opencv.highgui.Highgui

import org.opencv.features2d.DescriptorExtractor

import org.opencv.features2d.Features2d

import org.opencv.core.MatOfKeyPoint

import org.opencv.core.Mat

import org.opencv.features2d.FeatureDetect…[ More ]

Image Comparision using openCV and JavaCV stucked at last step - what next step
Image Comparision using openCV and JavaCV stucked at last step - what next stepFollowing is a small code I wrote using the existing examples, it’s to compare 2 images. Requirement is to check whether the small image is a part of the large image.String smallUrl ="rsz_our-mobile-planet-us-info…[ More ]
Retrieve the value in cell (1,2) from the model : JTable « Swing « Java Tutorial
import javax.swing.JTable;public class Main { public static void main(String[] argv) throws Exception { int rows = 3; int cols = 3; JTable table = new JTable(rows, cols); Object o = table.getModel().getValueAt(1, 1); }} …[ More ]
Batch_Converter
Batch_Converterimport ij.plugin.*;import java.awt.*;import java.io.*;import ij.*;import ij.io.*;import ij.process.*;import ij.gui.*;/*  Converts a folder of images in any format supported by ImageJ's File>Open command into TIFF, 8-bit TIFF, JPEG, GIF, PNG, PGM,BMP, FITS, Text Image, ZIP or Raw. The …[ More ]
Convert colour JPEG to PGM format
Convert colour JPEG to PGM formatimport java.io.*; import javax.media.jai.*; import javax.imageio.ImageIO; public class ConvertSpeed { private static String inputFileName = "C:\\Program Files\\balloon.jpg"; private static String outputFileName = "C:\\Program Files\\balloon.pgm"; public static void m…[ More ]
java pgm 2 jpeg/png
java pgm 2 jpeg/pngint[] myImage = getGreyscaleIntArray();BufferedImage im =newBufferedImage(width,height,BufferedImage.TYPE_BYTE_GRAY);WritableRaster raster = im.getRaster();for(int h=0;h        raster.setSample(w,h,0, myImage[h * width + w]);}}ByteArrayOutputStream myJpg =newByteArrayOutputStream(…[ More ]
How To Convert JPEG Image Into Byte Array Using Java Program?
The Java program given below converts a jpeg image into a byte array :import java.nio.file.Files;import java.io.File;import java.util.Arrays;import java.io.IOException;class ImageToByte{public static void main(String args[])throws IOException{File fi = new File("puppy.jpg");byte[] fileCont…[ More ]
how to convert png to pgm image?
how to convert png to pgm image?i have created an image using java. it is in png format but i would like it to be in pgm format. anyone can help to edit my code (which fails to run)? thanks!view source print?01import java.awt.image.BufferedImage;02import java.io.File;03import javax.imageio.ImageIO;0…[ More ]