GKGaurav kumarinaaroogaurav.hashnode.dev·Mar 7, 2024 · 2 min readHtml & Css<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UV-Compstible" content="IE=edge" /> <meta name="viewport" content="width=device-width, intial-scale=1"> <!-- css --> <lin...00
GKGaurav kumarinaaroogaurav.hashnode.dev·Nov 30, 2023 · 1 min readSimple calculator#write a program to make a simple calculator. import math print("\t____calculator____") def sum(a,b): a+=b return a def sub(a,b): if a>b: a-=b return a else: b-=a return b def mul(a,b): a*=b ...00
GKGaurav kumarinaaroogaurav.hashnode.dev·Apr 25, 2023 · 1 min readHuman Skin Tone DetectionSkin detection is the process of finding skin-colored pixels and regions in an image or a video. This process is typically used as a preprocessing step to find regions that potentially have human faces and limbs in images. Skin image recognition is u...00