Algo Vision
472 subscribers
340 photos
64 videos
5 files
114 links
Computer Vision - Algorithm
for commercial questions @mlenginer
Download Telegram
Siz biror joyda telegramni reklamasini kurganmisiz.
Menham Durov bergan intervyusidan keyin qidirb kurdim lekin biror joyda topolmadim.
Qolgan Chat App lardan farqli telegram MT proto protokoli asosida ishlaydi.
20xy yillarda bu protokolni buzish uchun 300 mln dollarlik sovrin elon qilgandi.
jamoalar ushanda malum bir qism(cha) ni buzishgandi lekin bu tezda tuzatildi.
Marketingga jiddiy xarajat qilmasdan kundan kunga ommalashayotgan telegramni
yutuqli tomoni nimada deb uylaysz?
Xavfsizlikmi?
Ozodlikmi?
yoki user interfeysmi?

Telegram kichik jamoa bilan shunday natijalarga erishgan.
juda kichik jamoa boshida aadashmasam 5-6 kishi.
Lekin har bir tasi uz sohasining professionali.
Nikolay Durov haligacha codeforces da yuqori reytingda turadi.

Xulosa nima demoqchiman.
Kuch bitta odamdayam emas!!!!
Kuch ko'pchilikdayam emas.
Kuch bir birini tuldiradigan jamoada!!!
Hech narsaga kech bulmaydi bugundan boshlang qanday loyiha bulishidan qatiy nazar!
🏆103👍2
This media is not supported in your browser
VIEW IN TELEGRAM
Bizgayam shunday AI urnatishmasa bulgani
🤣74👍1👾1
This media is not supported in your browser
VIEW IN TELEGRAM
Shu loyiha ustida utgan yili ancha ishlagandm lekin moliyalashtirish va tashqaridan qiziqish bulmadi....
Kimdir qiziqsa gitdagi manzilini uzatishim mumkin.
Faqat u desktop uchun ..lekin android uchun ham ugirsa buladi
6🔥3👨‍💻2🕊1
Forwarded from IT BILIM
🔔 IT sohasida amaliyot o‘tashni hohlaysizmi?

IT INTERN – yosh IT-mutaxassislari uchun yaratilgan ijtimoiy loyiha bo‘lib, u noyob imkoniyatlarni taqdim etadi:

🟢Amaliy ish tajribasiga ega bo'lish
🟢IT-kompaniyalarida pullik amaliyot o'tash
🟢Professionallardan murabbiylik saboqlari
🟢Mutaxassislardan qimmatli maslahatlar olish

Amaliyotchilar bazasiga qo'shilish uchun IT-MARKET veb-saytida rezyume qoldiring va biz sizni muvaffaqiyatli karyera sari qadam qo'yishingizda ko'mak beramiz.

🌐it-market | 🌐it-market | 🌐it bilim
Please open Telegram to view this post
VIEW IN TELEGRAM
Vilosiped bu hamma narsani qulda yozib chiqish.
Vilosiped yozmaslikka harakat qilish kerak.
Tugri bazida bu imkonsiz Masalan logikani butkul uzgacha qilishga tugri keladi.
Lekin aniq bir ehtiyoj bulmasa bu ishni qilmang!!
#include <iostream>
#include <vector>
#include <ranges>

int main()
{
std::vector<std::string> people { "Tom", "Bob", "Alice", "Sam", "Kate" };
auto condition = [](const std::string& s) {return s.length()==3; };

auto view = std::ranges::take_while_view{people, condition};

for(const auto& person: view)
{
std::cout << person << std::endl;
}
}

❗️❗️❗️❗️❗️❗️
🫡5👍1
Just start implement top view vehicle detection for parking managment system. Lekin negadir yuqori natija bulmayapti hozircha.
Model non commercial (albatta sekin ishlaydigan versiyasi) kimdir sinov qilishi uchun tashlab berishim mumkin.
from ultralytics import YOLO

model = YOLO(model="model path")
model.predict(source="image path", show=True, save = True)
🔥6
Pythonda backend yozish shunchalaram osonkiiii "Mazza"
@app.route('/api/register', methods=['POST'])
def register():
# Ensure you're handling JSON data
data = request.get_json()
new_user = User()
new_user.UserName = data["username"]
new_user.Email = data["email"]
new_user.set_password(data["password"])
try:
db.session.add(new_user)
db.session.commit()
return jsonify({"message": "Registration successful"}), 201
except Exception as e:
db.session.rollback()
return jsonify({"message": "Registration failed", "error": str(e)}), 500

@app.route('/api/logout')
def logout():
session.pop('logged_in', None)
session.pop('user_id', None)
flash('You have been logged out!', 'success')
return redirect(url_for('index'))

@app.route("/api/clients", methods = ["GET", "POST"])
def clients():
if True:
if request.method == "GET":
clients = Tourist.query.all()
return jsonify([client.to_dict() for client in clients]), 200
elif request.method == "POST":
client = Tourist.from_dict(request.get_json())
db.session.add(client)
db.session.commit()
return jsonify({"message":"Add new tourist"}) , 201

Xuddi hech narsa yozmay uzi ishlab ketadigandek
😁82
Media is too big
VIEW IN TELEGRAM
Avval matematika keyin dasturlash + ingliz tili
3👍3
Media is too big
VIEW IN TELEGRAM
Check out this real-time demo of YOLOv8 in action! 🤩
It's accurately detecting and tracking vehicles on the road, even calculating their speeds. 💨
Let me know what you think! 🚀
🆒64👍2
This media is not supported in your browser
VIEW IN TELEGRAM
I've been experimenting with Ultralytics YOLOv8, OpenCV and achieving great results! 🚀 I'm particularly excited about its ability to detect small objects, which is crucial in real-world applications like autonomous driving and traffic monitoring.
In this experiment, I used my YOLOv8 model to detect and estimate the distance of vehicles in a challenging scenario. 🛣 I'm still working on calibrating the distance measurements, but the results so far are promising.
What you see:
Accurate detection of various vehicles, including those that are small and distant.
Distance estimates for each detected vehicle.
Future improvements:
Fine-tune the model further to enhance distance estimation accuracy.
Explore different approaches for calibration and optimization.
I'm looking forward to pushing the boundaries of object detection and distance estimation with YOLOv8.
What are your experiences with YOLOv8?
7🔥3😍21
C bir qator pastka tushdi.
C++ bir qator yuqoriga
🆒4👏3😘1
This media is not supported in your browser
VIEW IN TELEGRAM
Nano Model, Big Impact: Counting Cars with YOLOv8 🚗

Ever wondered how traffic flow is monitored in real-time? It's often done with sophisticated computer vision systems, and I've been experimenting with one of the latest and greatest: YOLOv8!

This video shows how I'm using a small YOLOv8 model (specifically designed for efficiency) to identify and count vehicles in real-time. It's amazing to see how it picks out buses, cars.
The best part? This nano model is surprisingly powerful. It's resource-efficient, fast, and easy to deploy.

It's a fascinating journey exploring how we can use AI to make our roads smarter and safer!

What do you think about using AI for traffic monitoring? I'd love to hear your thoughts and ideas!

Grow your business with AI
👍5
8🎉5❤‍🔥3👍1
This media is not supported in your browser
VIEW IN TELEGRAM
Google Soli project. Promised but delivered.
👍3
Algo Vision
Google Soli project. Promised but delivered.
Google researching buyicha dunyoda birinchi urinda turadi. Butun dunyodagi barcha AI lar google kutubxonalari asosida ishlaydi lekin oxirgi vaqtlarda Gemìni ning natijalari Google taqdim etilgan vediorolikdan ancha pastroq?
Siz nima deb uylasz?
Nega Google pozitsiyasini boy bermoqda.
🤣13😁5
virtual_calculator.gif
11.3 MB
Turning Your Hands Into a Virtual Calculator: A Project in MediaPipe and OpenCV
Ever dreamed of turning your hands into a calculator? I recently tackled this project using MediaPipe and OpenCV, and it's been a blast!
I built a small virtual calculator that recognizes hand gestures. MediaPipe's hand tracking capabilities provided the foundation for detecting hand movements and positions. OpenCV, in turn, enabled me to visualize the hand tracking and overlay the virtual calculator interface.
This project is just the beginning. I'm excited to explore integrating Ultralytics models with virtual elements into Qt Group widgets, creating a more interactive and intuitive user experience. Imagine, for example, controlling your music player with hand gestures, or editing photos using virtual tools! The possibilities are truly endless.
What cool projects are you working on with gesture recognition technology? I'd love to hear your thoughts and connect with other developers!

Github Link
🔥104👍1
Bugun hammangizdan shunchaki support qilishningizni
surab qolaman.
Shogirdmiz MLSA’ga topshirmoqchi
Shunchaki Link ka kirib. bir ikki bulimni uqib chiqing!
O'tkazib yuborsizham mayli.
👍11
Yaxshiyam Linuxda ekanman. Ishlab turibdi.
😂😂
🤣17❤‍🔥4👍3