plsz i want the coding details of line

plsz i want the coding details of line

package vc.api;

import java.awt.Color;
import java.awt.Dimension;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Random;
import javax.imageio.ImageIO;
import vc.controller.Controller;

/**
 *
 1. @author ????
 */
public class VCAPI {
    private static BufferedImage pic1;
    private static BufferedImage pic2;
    private static BufferedImage out;

  static int getBrightness(int rgb) {
    int r,g,b;
    Color pixColour = new Color(rgb);
    r=pixColour.getRed();
    g=pixColour.getGreen();
    b=pixColour.getBlue();
    rgb = (int)((r+g+b)/3);
    return rgb;
  }

  static BufferedImage monochrome(BufferedImage picture) {
    int i,j,min=128,max=128,value=0,col;

    for (i=0;i<picture.getHeight();i++){
      for (j=0;j<picture.getWidth();j++) {
        value=getBrightness(picture.getRGB(j,i));
        if (value<min) min=value;
        if (value>max) max=value;
      }
    }

    value=(int)Math.ceil((max+min)/2);

    for (i=0;i<picture.getHeight();i++){
      for (j=0;j<picture.getWidth();j++) {
        col=getBrightness(picture.getRGB(j,i));
        if (col<value) picture.setRGB(j,i,-16777216);//black
        else picture.setRGB(j,i,-1);//white
      }
    }

    return picture;
  }

  static BufferedImage meldImages(BufferedImage template, BufferedImage random) {
    int i,j;
    BufferedImage output = new BufferedImage(template.getWidth(),template.getHeight(),BufferedImage.TYPE_INT_RGB);

    for (i=0;i<template.getHeight();i++){
      for (j = 0; j < template.getWidth(); j++) {


 2. **if (template.getRGB(j,i)<-8388608) {//black if
    (random.getRGB(j,i)<-8388608)
    output.setRGB(j,i,-1); else
    output.setRGB(j,i,-16777216);**

        }
        else {
          if (random.getRGB(j,i)<-8388608) output.setRGB(j,i,-16777216);
          else output.setRGB(j,i,-1);
        }
      }
    }
    return output;
  }
//------------------------------------------------------------------------------
  static BufferedImage makeGrey(BufferedImage template) {//note; 0 is black in the top left corner, 1 has white in that corner
    BufferedImage output = new BufferedImage(template.getWidth()*2,template.getHeight()*2,BufferedImage.TYPE_INT_RGB);
    int i,j;

    for (i=0;i<template.getHeight();i++){
      for (j=0;j<template.getWidth();j++) {
        if (template.getRGB(j,i)<-8388608) {//black
          output.setRGB((j*2),(i*2),-16777216);//black
          output.setRGB((j*2),(i*2)+1,-1);//white
          output.setRGB((j*2)+1,(i*2),-1);//white
          output.setRGB((j*2)+1,(i*2)+1,-16777216);//black
        }
        else {
          output.setRGB((j*2),(i*2),-1);//white
          output.setRGB((j*2),(i*2)+1,-16777216);//black
          output.setRGB((j*2)+1,(i*2),-16777216);//black
          output.setRGB((j*2)+1,(i*2)+1,-1);//white
        }

      }
    }
    return output;
  }

in the above code i want details about the valule...in meldimage() function ....we can see the for loop...

that is

if (template.getRGB(j,i)<-8388608) {//black if
    (random.getRGB(j,i)<-8388608)
    output.setRGB(j,i,-1); else
    output.setRGB(j,i,-16777216);

getRGB(j,i)<-8388608

why can put this value?
its default value ?
or if its any value of rgb

second setRGB(j,i,-16777216) y can use this value...its constant one

how 2 get this value...
plsz explain this code....its come visual cryptography grayconversion coding 

plsz anybody helpme..for this code

what is use of this value?
why can check < -8388608?
how to got this value -8388608
plsz helpme

i want this coding details plsz friends helpme..
View Answers









Related Tutorials/Questions & Answers:
plsz i want the coding details of line
plsz i want the coding details of line  package vc.api; import... i want this coding details plsz friends helpme... output; } in the above code i want details about the valule
plsz i want the coding details of line
plsz i want the coding details of line  package vc.api; import...? how to got this value -8388608 plsz helpme i want this coding details plsz... want details about the valule...in meldimage() function ....we can see
Advertisements
how i want to create a coding by this question?
how i want to create a coding by this question?  Design and write a class named Person and its two subclasses named Student and Employee. Make Lecturer and Admin subclasses of Employee. A person has a name, address, phone number
i want to find the byte code of a image file ... for my project..plz if anybody help me for java coding i will grateful..
i want to find the byte code of a image file ... for my project..plz if anybody help me for java coding i will grateful..   i want to convert... project.. but i cant convert Image file to its byte code format.. if anybody can plz
Login coding for gettin friends details
Login coding for gettin friends details  login codin in servlet?   Please visit the following link: Login Application
i want to update values
i want to update values  in my form i have 2 submit buttons one... the edit button all text boxs need to enable so that i can edit my details and later once i press update it need to update details into database and before
problem i coding
problem i coding  i have a problem in coding a combobox containing a number of *.java program on click one of them that program should compile and run and display the result in other window
I want to learn maven
I want to learn maven  Hi, I have to work on the maven based projects in my company. So, I want to learn it in 5-6 days. How to start learning Maven? Can I learn Maven in 5-6 days. Thanks
i want to learn Jquery
i want to learn Jquery  i want to learn jquery can u plz guide me   Yes, you can learn these technologies by yourself. Go through the following links: Ajax Tutorials JSON Tutorials JQuery Tutorials
i want for statement codding
i want for statement codding  what is the for condition following out put 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
I want to learn maven
I want to learn maven  Hi, I have to work on the maven based projects in my company. So, I want to learn it in 5-6 days. How to start learning Maven? Can I learn Maven in 5-6 days. Thanks   Hi, First of all I would
How should I learn coding?
How should I learn coding?  Hello Programmers, How should I learn coding? I want to start it from beginning. Its better if someone provides me urls to learn it quickly. Thanks   Hi, Learning coding is the first step
i want code for these programs
i want code for these programs   Advances in operating system Laboratory Work: (The following programs can be executed on any available and suitable platform) Design, develop and execute a program using any
I want this jsp answers
I want this jsp answers    How can we declare third party classes and interfaces inside our jsp page? How can we declare and definr global variables... for particular jsp pages? If we want to develop any jsp pages using eclipse where we can
I want this jsp answers
I want this jsp answers    How can we declare third party classes and interfaces inside our jsp page? How can we declare and definr global variables... for particular jsp pages? If we want to develop any jsp pages using eclipse where we can
i want to learn data science
i want to learn data science  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: i want... can learn the topic "i want to learn data science". Also tell me
i want to learn machine learning
i want to learn machine learning  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: i want... so that I can learn the topic "i want to learn machine learning"
I want solution for this jsp program..
I want solution for this jsp program..   <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ page import="java.sql.*" %> JSP Page <%! String
How do i do the coding for 'leaving a comment' in java
How do i do the coding for 'leaving a comment' in java  i am designing a webpage.In my webpage i want to add the option of adding a comment by the readers of the page.how do i do
i want to create dynamic calendar in java
i want to create dynamic calendar in java  i want code and explanation
i want to create dynamic calendar in java
i want to create dynamic calendar in java  i want code and explanation
i want display integer number in a string of statement
i want display integer number in a string of statement  i want display integer number in a string of statement
I want to learn Hibernate tutorial quickly
I want to learn Hibernate tutorial quickly  Hello, I want to learn Hibernate tutorial quickly. Is there any way.. I want to learn Hibernate online.. Please help
I want detail information about switchaction? - Struts
I want detail information about switch action?  What is switch action in Java? I want detail information about SwitchAction
same thing i want but from db..
same thing i want but from db..  http://www.roseindia.net/tutorial/javascript/dynamicCombo.html same thing i want but from db
i want to display where i entered values to same page
i want to display where i entered values to same page  hi friends !! i have a values from jsp page .and i want to store that values into DB at the same time i want to show immediatlly on same jsp page with tabular format
i want to display where i entered values to same page
i want to display where i entered values to same page  hi friends !! i have a values from jsp page .and i want to store that values into DB at the same time i want to show immediatlly on same jsp page with tabular format
i want to pass Javascript value to JSP scriptlet..
i want to pass Javascript value to JSP scriptlet..  i am having a problem that, i am having a combo box in the JSP page when i select an item from... now i want to pass this value to JSP scriptlet
Can I learn AI without coding?
Can I learn AI without coding?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Can I... that I can learn the topic "Can I learn AI without coding?". Also tell
Can I learn machine learning without coding?
Can I learn machine learning without coding?  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: Can I learn machine learning without coding? Try to provide me good
i want print the following out put
i want print the following out put  Hello sir i want the following out put can u provide the program in c# o/p; HELLOLLEH HELLLEH HELEH HEH H (adsbygoogle = window.adsbygoogle || []).push
i want to remove specific node in xml file
i want to remove specific node in xml file   <A> <B>hi <C>by <A> <B>hellow <C>how r u ? i want to delet node which is == hellow using java program please help me . tanks in advance
i want 2 columns to be deleted in mysql
i want 2 columns to be deleted in mysql  i want 2 columns to be deleted in mysql The tables having the columns have no mapping   Use the given query: ALTER TABLE table_name DROP col_name
I want to learn Hadoop from scratch
I want to learn Hadoop from scratch  Hi, I want to learn Hadoop from... for companies. Now I want to learn Hadoop including all the technologies of it. How.... I have 2 years of experience in Java, JDBC and Web application development. I
I want to learn Hadoop from scratch
I want to learn Hadoop from scratch  Hi, I want to learn Hadoop from... for companies. Now I want to learn Hadoop including all the technologies of it. How.... I have 2 years of experience in Java, JDBC and Web application development. I
How can i write a datagrid coding - Java Beginners
How can i write a datagrid coding  Hi, I want make a datagrid..plz send me datagrid coding using mysql database and jsp..plz tell me brief description about grid how can i connect datagrid with database. Thanks
I am getting error.How can i get details
I am getting error.How can i get details  Exception in thread "main" java.sql.SQLException: Listener refused the connecti n with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect
I want complete tutorial on advanced java
I want complete tutorial on advanced java  I am studying advanced java like servlets, JSP's RMI EJB's JDBC & all stuff like this i want some tutorial file so that i can download it & read can anyone help me?   
i want to create an icon on my desktop... with this i want to open my web application
i want to create an icon on my desktop... with this i want to open my web application  i want to create an icon on my desktop... with this i want to open my web application(automatically run my server... )how
I want code below mention programe
I want code below mention programe  Create a web application using any technology that accepts a keyword and displays 10 relevant tweets from Twitter in real-time for that keyword
I want design samples for JSP project
I want design samples for JSP project  Sir, I world Like to do a project in jsp techonology. But i have no idea of selecting the project, especially if i selected any project i have no idea that is how to build ie how to design
I am from .net background, I want to learn SOA.
I am from .net background, I want to learn SOA.  Hi I am from .net background, I want to learn SOA. Could it possible for me to learn SOA, I suppose SOA includes Java. I dont have knowledge of java. Please help Thanks  
I want example of Control Statement in Java
I want example of Control Statement in Java  Hi, I want answer of control statements in java with example? Thanks   Hi, Control statement in Java is used to control the flow of execution of program. Here
I want to learn hibernate step-by-step.
I want to learn hibernate step-by-step.  Hello, I am very new to programming world and I am looking forward to learn Hibernate, but I would like to start from start and learn it step by step. Can you please help me.. I would
i want to know how a slide will hide
i want to know how a slide will hide  when im click on the button then im getting a slide, but when im click on the another button this slide will be hide.. and here im using logic iterate to getting the values from action class
i want to know how a slide will hide
i want to know how a slide will hide  when im click on the button then im getting a slide, but when im click on the another button this slide will be hide.. and here im using logic iterate to getting the values from action class
i want to save image on server folder. and i want to save URL of this folder and name of image in database
i want to save image on server folder. and i want to save URL of this folder and name of image in database  hi i want to save image on server folder. and i want to save URL of this folder and name of image in database.on click
What classes should I take if I want to become a data scientist?
What classes should I take if I want to become a data scientist?  Hi... for the tutorials to learn: What classes should I take if I want to become a data... learn the topic "What classes should I take if I want to become a data
I want to learn Machine Learning, where should I start?
I want to learn Machine Learning, where should I start?  Hi, I am... for the tutorials to learn: I want to learn Machine Learning, where should I start? Try... "I want to learn Machine Learning, where should I start?". Also tell me
i want immediate code - Development process
i want immediate code  Basic sales tax is applicable at a rate of 10... of 5%, with no exemptions. When I purchase items I receive a receipt which lists... an application that prints out the receipt details for these shopping baskets... INPUT

Ads