Posts

Showing posts from July, 2022

My Project 3: (under progress)

Image
 Lifestyle Store: An online shopping website with a login page, and sign-up page using HTML, CSS, and bootstrap. index.html code: <!DOCTYPE html> <html>     <head>         <title>Lifestyle Store</title>         <meta charset="UTF-8">         <meta name="viewport" content="width=device-width, initial-scale=1.0">         <link rel="stylesheet" type="text/css" href="index.css">     </head>     <body>         <div class="header">             <div class="innerheader">                                 <div class="logo">                     <a href=" ">Lifestyle Store</a>             ...

My Project 2:

  Minor C project: Vehicle   Parking Revenue Calculator This project tells us the number of 2-wheelers (eg bikes, cycles), 3-wheelers (eg auto rickshaws), and 4-wheelers (eg cars) that got parked on that day. It also tells us the total number of vehicles present in the parking area. Finally, this project calculates parking revenue generated by various vehicles. Code: #include <stdio.h> #include<conio.h> #include<stdlib.h> int menu(); void remove(); void showdetail(); void bus(); void cycle(); void rickshaw(); int nob=0,nor=0,noc=0,count=0,amount=0; void main() {     while(1)     {         clrscr();         switch(menu())         {         case 1:bus();         break;         case 2:cy...

My Project 1:

Image
 Freedom Fighter Recognition System using OpenCV: This project uses the concept of template matching (in OpenCV) and object detection.  The project takes a source image and a template/patch. Here the source image is a collage of freedom fighters and a template (eg Bhagat Singh). It compares both source and the template by finding the matching probability and encircles the portion in the source image with maximum matching probability. Source Image: Template: Final Output: Code: import cv2 import numpy as np FreedomFighters=cv2.imread("freedomfighters.jpg",cv2.IMREAD_UNCHANGED) cv2.imshow("Image",FreedomFighters) cv2.waitKey() cv2.destroyAllWindows() BhagatSingh=cv2.imread("bhagatSinghpic.jpg",cv2.IMREAD_UNCHANGED) cv2.imshow("Image",BhagatSingh) cv2.waitKey() cv2.destroyAllWindows() result=cv2.matchTemplate(FreedomFighters,BhagatSingh,cv2.TM_CCOEFF_NORMED) min_val,max_val,min_loc,max_loc=cv2.minMaxLoc(result) h=BhagatSingh.shape[0] w=BhagatSingh.s...