This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hey, I'm Anshuman! 👋 | |
## About Me | |
Based in Indiranagar, Bangalore | |
Software Engineer passionate about AI/ML and building impactful tech solutions | |
Working with Python, Flask, FastAPI, and Node.js | |
Currently focused on diving deeper into ML and deep learning | |
JAMStack enthusiast | |
Tech Stack | |
- Backend: Python, Node.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See https://github.com/dialogflow/dialogflow-fulfillment-nodejs | |
// for Dialogflow fulfillment library docs, samples, and to report issues | |
'use strict'; | |
const functions = require('firebase-functions'); | |
const {WebhookClient} = require('dialogflow-fulfillment'); | |
const {Card, Suggestion} = require('dialogflow-fulfillment'); | |
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="./styles.css"> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
import numpy as np | |
def getTextOverlay(img): | |
pathname = "." | |
output = np.zeros(img.shape, dtype=np.uint8) | |
vis = img.copy() | |
channels = cv2.text.computeNMChannels(img) | |
# Append negative channels to detect ER- (bright regions over dark background) | |
cn = len(channels)-1 |