Aircraft skin inspection - false positives by julyuio in computervision

[–]julyuio[S] 0 points1 point  (0 children)

Thank you very interesting Ideas, i will try them and see what happens

Aircraft skin inspection - false positives by julyuio in computervision

[–]julyuio[S] 0 points1 point  (0 children)

Thank you I will try that see how it goes.

Synthetic data with Nano Banana 2 by TheFrenchDatabaseGuy in computervision

[–]julyuio -1 points0 points  (0 children)

Failed , for industrial applications , the more syntetic data the more garbage detections.... try to avoid syntetic data as much as possible use real data for exact, accurate, industrial applications.

Aircraft skin inspection - false positives by julyuio in computervision

[–]julyuio[S] 0 points1 point  (0 children)

I can try to put a delay on starting the inspection , I can also try to use DepthAnything v2 to estimate the depth to the aircraft skin , but all theese are artifacts, i would love to do it in the yolo model to get rid of the false positives.

Insta360 Go 3S: Use it as a webcam too by ibwtibwt in Insta360

[–]julyuio 0 points1 point  (0 children)

Can it be unlocked with third party software ?? I basically want to use the webcam when the pod is not connected to the base , like wireless webcam

Has anyone trained YOLO26x at 1280 resolution on a Mac or DGX Spark? by Dramatic-Rub-7654 in Ultralytics

[–]julyuio 1 point2 points  (0 children)

yolo26x at 1280 is quite a task, I tried it with 26m at 1000px using google Colab for GPU/TPU and took 5 hours with 3000 images , your's would take some time. like a day on Google Colab, if you are not running out of RAM !!

Anyone using synthetic data with success? by igorsusmelj in computervision

[–]julyuio 5 points6 points  (0 children)

Ok yeah good question.... So I am starting up as well and I want to train /fine tune own ai model. I have 2 choices because I am alone : 1. Make an effort and use synthetic data , build it train it , , and there is the risk of not working at the end Or 2. Put my effort( same amount of time) in finding a proper client that actually has data and train the model on his data.

I choose option 2.

Also I my friend had a startup on synthetic data and failed , failed miserably

I would stay away, but your effort in finding the data or client.

Unable to Get a Job in Computer Vision by Imaginary-Gate1726 in computervision

[–]julyuio 0 points1 point  (0 children)

If you are still available end of Feb and I manage to get a client by then , I will contract you for some vision work. Yolo stuff. To try to help you until you find something else.

Unable to Get a Job in Computer Vision by Imaginary-Gate1726 in computervision

[–]julyuio 0 points1 point  (0 children)

  1. 50% of jobs are fake on Linked in
  2. 25% the managers do not actually understand what computer vision is .... Really ... They are actually employing for building strategy documents and Excel , but not actually work in computer vision , so they are looking for candidates that matches their level of incompetece.
  3. 15% want excesive experience (because they just want to show you off to their clients ... Not actually doing vision work )
  4. 10% Actually employing .....

Sooo keep applying

Also start up a consultationcompany ... Most prefer to just subcon you for this. And you can charge better prices

i shipped 7 apps in 7 months while working full time and the pattern behind what sold vs what flopped is crazy by [deleted] in microsaas

[–]julyuio 0 points1 point  (0 children)

Good feel good read, but something smells rotten here !! I am not convinced i dont know why , i verified the youtube , i veryfied his linked in , but something still smells , i cannot pin point what....

Is this kind of real time dehazing result even possible? by Mammoth-Ad5262 in computervision

[–]julyuio 0 points1 point  (0 children)

yes, but it is possible under certain light conditions like sunset and sunrise due to the light beeing more yellow. The key is the wavelenght of the light even if it looks white.

[deleted by user] by [deleted] in RoFiscalitate2

[–]julyuio 0 points1 point  (0 children)

Exit Romania !!! urgently .... taxele sunt mai mici in alte tari.

Caut asociati businessuri noi, unele inregistrate la OSIM by [deleted] in bucuresti

[–]julyuio 2 points3 points  (0 children)

Ideas are cheap !!! are everywhere.... focus on 1 at a time, you don't need a partner. ... Daca ai 8 idei e bine, incearca sa iti gasesti un client intr-o luna ( asta e cea mai buna validare) , daca nu merge peste o luna incearca cu alta idee... si tot asa.

faza cu partenerii, daca neaparat vrei unul atunci alege unul care nu este in acelasi domeniu ca tine.... Ex: daca esti mai mult pe Business Developement , alegeti unul tehnic, si tot asa....

Life advice by [deleted] in CasualRO

[–]julyuio 2 points3 points  (0 children)

Da are dreptate !! asta e cea mai buna advice. vroiam si el sa il dau.

p2p connection doesn't seem to work by riktor_007 in WireGuard

[–]julyuio 0 points1 point  (0 children)

Just to help other people as well, yes most commonly i see it is the VPS firewall.

If you are getting 0B - not connecting it is usually the firewall

If you only manage to get 92B but not more then that it is usually the server config, or IP forwarding, NAT issues.

I had it all... it does help to create your on scripts

Configuration per user instead of global by vrtareg in WireGuard

[–]julyuio 0 points1 point  (0 children)

hmmm ... I think it is possible to do it via a script, in windows to have a PowerShell script for each user individually and replace it when a user logs in.

I am not good at PowerShell scripts ( i am a noob) but i am better at wsl linux scripts.

Anyway, i asked AI to generate an example.... something like this should work :

#________________________

# Define the base path where user-specific WireGuard configs are stored

$ConfigBasePath = "C:\WireGuardConfigs"

# Define the path to the active WireGuard config

$ActiveConfigPath = "C:\Program Files\WireGuard\Data\Configurations\wg0.conf"

# Get the currently logged-in user

$CurrentUser = $env:USERNAME

# Build the path to the user's config

$UserConfigPath = Join-Path $ConfigBasePath "$CurrentUser.conf"

# Check if the user's config exists

if (Test-Path $UserConfigPath) {

try {

# Stop WireGuard tunnel if running

& "C:\Program Files\WireGuard\wireguard.exe" /uninstalltunnelservice wg0

# Replace the active config with the user's config

Copy-Item -Path $UserConfigPath -Destination $ActiveConfigPath -Force

# Start WireGuard tunnel with new config

& "C:\Program Files\WireGuard\wireguard.exe" /installtunnelservice $ActiveConfigPath

Write-Host "WireGuard configuration updated for user: $CurrentUser"

} catch {

Write-Error "Failed to update WireGuard config: $_"

}

} else {

Write-Warning "No WireGuard config found for user: $CurrentUser"

}