Implementation of Java Native Interface
Implementation of Java Native Interface A) Develop a JNI application for giving a string equivalent of a number (integer) entered by the client.B) Develop a… Read More »Implementation of Java Native Interface
Implementation of Java Native Interface A) Develop a JNI application for giving a string equivalent of a number (integer) entered by the client.B) Develop a… Read More »Implementation of Java Native Interface
Implementing CORBA Services using java to java technology.A) Find factorial of the number.B) Find the Reverse of the number and string C) Find the square… Read More »Implementing CORBA Services using java to java technology.
Remote Objects for Database Access Pass remote objects from the server to the client. The client will receive the stub object (through remote interfaces) and… Read More »Remote Objects for Database Access
Implementation of Two Phase Commit Code: Client.java import java.io.*;import java.net.*; public class Client implements Runnable{ static Socket clientSocket = null; static PrintStream os = null; … Read More »Implementation of Two Phase Commit
Remote Method Invocation (RMI) supporting the Distributed Computing in Java. Create a Client and Server application where the client invokes methods via an interface. These… Read More »Remote Method Invocation (RMI) supporting the Distributed Computing in Java.
Applying DFT on image matrix & Performing the IDFT Code clc;close all;sum=0;a=imread(‘D:final printdip speechimages8.jpg’); b=a;M=50;N=50; for x=1:50 for y=1:50 … Read More »Applying DFT on image matrix & Performing the IDFT
MATLAB Program for Boundary Detection Code close all;clear all;BW1 = imread(‘DSC08386.jpg’); subplot(1,2,1);imshow(BW1)title(‘original image’); SE = strel(‘arbitrary’,eye(5));BW2 = imerode(BW1,SE);subplot(1,2,2);imshow(BW1 – BW2)title(‘Boundary Extracted’); Output of Boundry Detection
Morphological Operations on Image A) OpeningB) Closing C) Morphological GradientD) Top-hat Transformation (A) Opening Code Clc;clear all;close all; a=imread(‘D:final printdip speechimages5.jpg’); se=[1 1 1… Read More »Morphological Operations on Image
MATLAB Program to apply Histogram Equalization on image Code clear allclcI=imread(‘cameraman.tif’);I=double(I);maximum_value=max((max(I)));[row col]=size(I);c=row*col;h=zeros(1,300);z=zeros(1,300);for n=1:rowfor m=1:colif I(n,m) == 0I(n,m)=1;endendendfor n=1:rowfor m=1:colt = I(n,m);h(t) = h(t) + 1;endendpdf… Read More »MATLAB Program to apply Histogram Equalization on image
MATLAB Program to plot a Histogram Code clear all;clc;close all;a=imread(‘E:Danieldaniel-radcliffe-20071006-321486.jpg’);b=zeros(1,256);[row,col]=size(a); for x=1:1:row for y=1:1:col if a(x,y)<1 … Read More »MATLAB Program to plot a Histogram