diff --git a/Brainvoltzzz/Advert.java b/Brainvoltzzz/Advert.java new file mode 100644 index 00000000..25c194a2 --- /dev/null +++ b/Brainvoltzzz/Advert.java @@ -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")); +} +} diff --git a/Brainvoltzzz/Att1.png b/Brainvoltzzz/Att1.png new file mode 100644 index 00000000..3004c9be Binary files /dev/null and b/Brainvoltzzz/Att1.png differ diff --git a/Brainvoltzzz/Att2.png b/Brainvoltzzz/Att2.png new file mode 100644 index 00000000..dac388f4 Binary files /dev/null and b/Brainvoltzzz/Att2.png differ diff --git a/Brainvoltzzz/ICCNIUM.apk b/Brainvoltzzz/ICCNIUM.apk new file mode 100644 index 00000000..0759ab95 Binary files /dev/null and b/Brainvoltzzz/ICCNIUM.apk differ diff --git a/README.md b/README.md index 04eafd41..245b900b 100644 --- a/README.md +++ b/README.md @@ -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.