Skip to content

Commit

Permalink
List Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
zpratikpathak committed Feb 17, 2024
1 parent 8e180e7 commit ae883c6
Show file tree
Hide file tree
Showing 192 changed files with 70,399 additions and 2,392 deletions.
3 changes: 2 additions & 1 deletion 01-iOS-Calculator/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# iOS-Calculator
# 1 iOS-Calculator

A Calculator to implement my HTML5, CSS and JS skills.

Check it out here: https://zpratikpathak.github.io/iOS-Calculator/
Expand Down
2 changes: 1 addition & 1 deletion 01-iOS-Calculator/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
8 changes: 5 additions & 3 deletions 01-iOS-Calculator/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,11 @@ function rerender() {
}

function init() {
document.querySelector(".class-buttons").addEventListener("click", function(event) {
buttonClick(event.target.innerText);
});
document
.querySelector(".class-buttons")
.addEventListener("click", function (event) {
buttonClick(event.target.innerText);
});
}

init(); //init update
6 changes: 6 additions & 0 deletions 02-Travel-India/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 2. Travel India

Travel India is an Project which focus on india's top 4 most visited tourist places. This project has very beautiful UI controlled by Javascript. The Navigation is fone by using Javascript. It also has very beautiful Navbar.

Technologies Used: JavaScript, HTML, CSS
![Travel India](image.png)
Binary file added 02-Travel-India/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion 02-Travel-India/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
7 changes: 7 additions & 0 deletions 03-age-prediction-tfjs/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 3. Age Prediction Tfjs

Age prediction app uses the machine learning model of opencv and tensorflow JS to predict the Age of a person using face recognition. It is solely built by using an open-source model of TFjs.

Technologies Used: Javascript, Html, CSS, Tensorflow Js, Opencv

![Age Prediction TFjs](image.png)
Binary file added 03-age-prediction-tfjs/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 22 additions & 24 deletions 03-age-prediction-tfjs/index.html
Original file line number Diff line number Diff line change
@@ -1,40 +1,38 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Opencv JS</title>
<script src="js/utils.js"></script>
<script async src="js/opencv.js" onload="openCvReady();"></script>


<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script>

<style>
canvas {
position: absolute;
}
h2{
canvas {
position: absolute;
}
h2 {
position: relative;
top: -250px;
right: 350;
}
body {
margin: 0;
background-color: whitesmoke;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
}
body {
margin: 0;
background-color: whitesmoke;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
</head>
<body>
<video id="cam_input" height="680" width="900"></video>
<canvas id="canvas_output"></canvas>
<script type="text/JavaScript" src="script.js"></script>
<!-- <h2 id="output">Initializing</h2> -->
</body>

</body>
</html>
11,060 changes: 11,032 additions & 28 deletions 03-age-prediction-tfjs/js/opencv.js

Large diffs are not rendered by default.

Loading

0 comments on commit ae883c6

Please sign in to comment.