Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Brainvoltzzz/Advert.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import java.util.*;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import javax.swing.JFrame;
import javax.imageio.*;

import java.io.File;
import java.io.IOException;

public class Advert {

public static void main(String args[]) throws IOException
{

BufferedImage image = ImageIO.read(new File("Att2.png"));
BufferedImage overlay = ImageIO.read(new File("icctv.png"));

// create the new image, canvas size is the max. of both image sizes
int w = Math.max(image.getWidth(), overlay.getWidth());
int h = Math.max(image.getHeight(), overlay.getHeight());
BufferedImage combined = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);

// paint both images, preserving the alpha channels
Graphics g = combined.getGraphics();
g.drawImage(image, 0, 0, null);
g.drawImage(overlay, 0, 0, null);

g.dispose();

// Save as new image
ImageIO.write(combined, "PNG", new File("/Users/vedangbhole/Sih/ICCOutput", "advert.png"));
}
}
Binary file added Brainvoltzzz/Att1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Brainvoltzzz/Att2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Brainvoltzzz/ICCNIUM.apk
Binary file not shown.
35 changes: 22 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
# ICC Eliminator Submisison
Teams will be required to submit their code base on GitHub by forking this repository.
Follow the following steps to submit your code base.
1. **Fork** this repository.
1. Create a **folder with your team name**
1. **Upload** your code base and videos to the repository.
1. Create a **pull request** to this repository. Make sure you raise your **pull request** as per your **team name**.
1. You can also add you team details in the README.md of your forked repository
For Example:
### Team Information

------------
###### Team Name -
###### Track -
###### Brief Description and Snapshots -
###### Team Name - Brainvoltzzz
###### Track - Fintech Track
###### Brief Description and Snapshots -

Snapshots Can be foun here: https://drive.google.com/drive/folders/1xiUO_LvuXMCZuErL0_4ru_Mha0XSVVK-?usp=share_link
Demo Video: https://drive.google.com/file/d/1oXcQFlkApftdVp5LQN84e1Tu5wcbizbD/view?usp=share_link

“Only show what the users want to see” is what makes a consumer feel more loyal and make a purchase.

Route1: Won’t it be amazing if users could get what product they wanted and ICC will help them in getting it. We introduce program called "WeGotYourDreamCovered". We have user select an product they desire And with every transaction we give them a slight incentive/cashback/discount for the service/product.

Route2: What if we had an advert automatically generated for the specific user only, needing no additional input? Won’t it be great! We use the user’s interested service and use that to target.

Unique:
Our idea/tool has the dream service/product approach which is like no other and has no competition to it.
Also our Hyper Recommendation feature, makes the user feel exclusive and makes them make a feel good purchase which increases ICC sales and services.

Our idea ensures (Positives):
High Purchase Activity: The super personalized recommendation and dream gift will generate activity.
Sale-Thru Rate: With high engagement the traffic on service will increase.
User Loyalty: The loop of purchase to get the dream product and always getting rewarded will make the users loyal.