#segmentation — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #segmentation, aggregated by home.social.
-
Pipeline release! nf-core/lsmquant v1.0.0 - 1.0.0 - Excited Squid!
A pipeline for processing and analysis of light-sheet microscopy images.
Please see the changelog: https://github.com/nf-core/lsmquant/releases/tag/1.0.0#3dunet #imageanalysis #imageprocessing #lightsheetmicrocopy #segmentation #stitching #nfcore #openscience #nextflow #bioinformatics
-
Pipeline release! nf-core/lsmquant v1.0.0 - 1.0.0 - Excited Squid!
A pipeline for processing and analysis of light-sheet microscopy images.
Please see the changelog: https://github.com/nf-core/lsmquant/releases/tag/1.0.0#3dunet #imageanalysis #imageprocessing #lightsheetmicrocopy #segmentation #stitching #nfcore #openscience #nextflow #bioinformatics
-
New open course at @gisocw! Learn collecting ground truth in the field with @merginmaps, #AI-assisted #segmentation of ground truth polygons with the AI Segmentation plugin by #TerraLab and the full workflow from downloading #Sentinel-2 data, Random Forest classification & accuracy assessment using the Semi-Automatic Classification plugin in #QGIS.
-
New video: review of the AI Segmentation by #TerraLab plugin that allows smooth image segmentation in QGIS based on Meta's Segment Anything Model. Watch it on: 📺YouTube: youtu.be/oKxh8ldYflM 📺QwastTube: videos.qwast-gis.com/w/d8RMLJzcm1... #QGIS #GeoAI #segmentation #SAM #OpenSource #GIS
Review of the AI Segmentation ... -
Nano Banana Pro. Реальное применение, а не мемные картинки
Когда данных мало, а домен сильно отличается, предобученные модели перестают работать. Я попробовал вместо сбора и ручной разметки генерировать дорожные дефекты поверх реальных кадров. Что получилось, где работает, где нет и сколько это стоит - в статье.
https://habr.com/ru/articles/993968/
#ai #nano_banana_pro #synthetic_data #computer_vision #segmentation
-
$8.2 Bn Market Opportunities, Trends, Competitive Analysis, Strategies, and Forecasts, 2019-2024, 2024-2029F, 2034F
Company Logo Key market opportunities in the creator economy analytics AI sector include increasing adoption of AI-powered tool…
#Economy #artificialintelligence #automationtools #compoundannualgrowthrate #contentcreators #CreatorEconomy #digitalplatforms #globalmarket #InfluencerMarketing #PredictiveAnalytics #segmentation #socialmediaplatforms
https://www.europesays.com/2739687/ -
Euer #Heimnetz sieht ähnlich aus, oder? Oder?! 😵💫
#homelab #VLAN #segmentation #801.2q -
Euer #Heimnetz sieht ähnlich aus, oder? Oder?! 😵💫
#homelab #VLAN #segmentation #801.2q -
Euer #Heimnetz sieht ähnlich aus, oder? Oder?! 😵💫
#homelab #VLAN #segmentation #801.2q -
Euer #Heimnetz sieht ähnlich aus, oder? Oder?! 😵💫
#homelab #VLAN #segmentation #801.2q -
$142.85 Bn Opportunities, Trends, Competitive Landscape, Strategies, and Forecasts, 2020-2025, 2025-2030F, 2035F
Company Logo Key market opportunities…
#UnitedStates #US #USA #america #Economicgrowth #Entertainment #entertainmentbuilding #health #HindustanConstructionCompanyLimited #Larsen&ToubroLimited #marketvalue #PlayMartInternationalLimited #segmentation #sports #TataProjectsLimited #ThemeParkBuildLimited #unitedstatesofamerica #WaterParkConstructionInc.
https://www.europesays.com/2734484/ -
Избавляемся от ошибок Segmentation fault из-за переполнения стека в С++
Развивая идею доверенного языка программирования я пришел к выводу, что за счет ограничений синтаксиса и создания соответствующих проверок в статическом анализаторе кода, можно защититься практически ото всех технических ошибок, кроме двух - контроль динамически выделяемой памяти и переполнения стека. Причем, если для подсчета ссылок в рантайме, решения существуют, то контроль переполнения стека невозможно сделать не только во время анализа исходного текста программы, но это практически невозможно и во время выполнения приложения! Ведь ошибка переполнение стека (stack overflow) - это всегда фатально, так как не существует способа поймать и обработать эту ошибку изнутри выполняемой программы, чтобы потом продолжить её выполнение как ни в чем не бывало. Существует ли хотя бы теоретическая возможность защититься от ошибок переполнения стека и сделать из нее обычную ошибку (исключение), которую можно поймать (обработать) в самом приложении, чтобы была возможность продолжить выполнение программы без боязни последующей ошибки сегментации (segmentation fault) или повреждения стека (stack smashing)?
https://habr.com/ru/articles/983394/
#переполнение_стека #segmentation #segmentation_fault #stack_overflow #ошибки #исключения_в_c++ #обработка_ошибок #надежное_программирование #сезон_ии_в_разработке
-
Избавляемся от ошибок Segmentation fault из-за переполнения стека в С++
Развивая идею доверенного языка программирования я пришел к выводу, что за счет ограничений синтаксиса и создания соответствующих проверок в статическом анализаторе кода, можно защититься практически ото всех технических ошибок, кроме двух - контроль динамически выделяемой памяти и переполнения стека. Причем, если для подсчета ссылок в рантайме, решения существуют, то контроль переполнения стека невозможно сделать не только во время анализа исходного текста программы, но это практически невозможно и во время выполнения приложения! Ведь ошибка переполнение стека (stack overflow) - это всегда фатально, так как не существует способа поймать и обработать эту ошибку изнутри выполняемой программы, чтобы потом продолжить её выполнение как ни в чем не бывало. Существует ли хотя бы теоретическая возможность защититься от ошибок переполнения стека и сделать из нее обычную ошибку (исключение), которую можно поймать (обработать) в самом приложении, чтобы была возможность продолжить выполнение программы без боязни последующей ошибки сегментации (segmentation fault) или повреждения стека (stack smashing)?
https://habr.com/ru/articles/983394/
#переполнение_стека #segmentation #segmentation_fault #stack_overflow #ошибки #исключения_в_c++ #обработка_ошибок #надежное_программирование #сезон_ии_в_разработке
-
Избавляемся от ошибок Segmentation fault из-за переполнения стека в С++
Развивая идею доверенного языка программирования я пришел к выводу, что за счет ограничений синтаксиса и создания соответствующих проверок в статическом анализаторе кода, можно защититься практически ото всех технических ошибок, кроме двух - контроль динамически выделяемой памяти и переполнения стека. Причем, если для подсчета ссылок в рантайме, решения существуют, то контроль переполнения стека невозможно сделать не только во время анализа исходного текста программы, но это практически невозможно и во время выполнения приложения! Ведь ошибка переполнение стека (stack overflow) - это всегда фатально, так как не существует способа поймать и обработать эту ошибку изнутри выполняемой программы, чтобы потом продолжить её выполнение как ни в чем не бывало. Существует ли хотя бы теоретическая возможность защититься от ошибок переполнения стека и сделать из нее обычную ошибку (исключение), которую можно поймать (обработать) в самом приложении, чтобы была возможность продолжить выполнение программы без боязни последующей ошибки сегментации (segmentation fault) или повреждения стека (stack smashing)?
https://habr.com/ru/articles/983394/
#переполнение_стека #segmentation #segmentation_fault #stack_overflow #ошибки #исключения_в_c++ #обработка_ошибок #надежное_программирование #сезон_ии_в_разработке
-
Избавляемся от ошибок Segmentation fault из-за переполнения стека в С++
Развивая идею доверенного языка программирования я пришел к выводу, что за счет ограничений синтаксиса и создания соответствующих проверок в статическом анализаторе кода, можно защититься практически ото всех технических ошибок, кроме двух - контроль динамически выделяемой памяти и переполнения стека. Причем, если для подсчета ссылок в рантайме, решения существуют, то контроль переполнения стека невозможно сделать не только во время анализа исходного текста программы, но это практически невозможно и во время выполнения приложения! Ведь ошибка переполнение стека (stack overflow) - это всегда фатально, так как не существует способа поймать и обработать эту ошибку изнутри выполняемой программы, чтобы потом продолжить её выполнение как ни в чем не бывало. Существует ли хотя бы теоретическая возможность защититься от ошибок переполнения стека и сделать из нее обычную ошибку (исключение), которую можно поймать (обработать) в самом приложении, чтобы была возможность продолжить выполнение программы без боязни последующей ошибки сегментации (segmentation fault) или повреждения стека (stack smashing)?
https://habr.com/ru/articles/983394/
#переполнение_стека #segmentation #segmentation_fault #stack_overflow #ошибки #исключения_в_c++ #обработка_ошибок #надежное_программирование #сезон_ии_в_разработке
-
👾 Unsupervised Instance Segmentation with Superpixels
https://arxiv.org/abs/2509.05352
#cs #arxiv #machinevision #vision #computergraphics #segmentation #sensors #ml
-
#TargetGroups 🎯 Without effective #targetgrouporientation, #marketingmeasures are a pure game of chance: and without effective #dataanalysis, #marketing is blind.
#Segmentation 💬 Target groups are analyzed based on age, interests, behavior or location, for example, in order to develop tailored #marketingstrategies.
#Personalization 📊 #AI and #analysistools make it possible to provide and communicate personalized content to increase #conversions.
-
Tried the same with a more realistic 3D stack from the #ImageJ sample library.#Cellpose runs fast and segments very well out of the box.#CellSeg3D takes considerably longer and seems to segment decently, but I couldn’t get a proper instance #segmentation in the post-processing step (which is recommended as part of its workflow). However, #CellSeg3D looks very promising — just needs some more time and parameter exploration, I guess.
I’d recommend giving it a try 👌
-
✍️ New in #eLife: #CellSeg3D introduces #WNet3D, a self-supervised 3D #segmentation method for #microscopy data — no labels needed. Claims to outperform #Cellpose/#StarDist on 4 datasets. Includes #opensource plugin (#Napari) + full 3D annotated #cortex dataset. Will test it later.
-
📢 New Paper Alert!
Using Citizen Science Data as Pre-Training for #Semantic #Segmentation of High-Resolution #UAV Images for Natural #Forests Post-Disturbance Assessment
Paper 📄: https://doi.org/10.3390/f16040616
Blog post 🌐: https://damienlarocque.gitlab.io/blog/forests2025
Code 💻: https://github.com/norlab-ulaval/droneSegmentation -
Pipeline release! nf-core/molkart v1.1.0 - 1.1.0 - Resolution Road!
Please see the changelog: https://github.com/nf-core/molkart/releases/tag/1.1.0
#fish #imageprocessing #imaging #molecularcartography #segmentation #singlecell #spatial #transcriptomics #nfcore #openscience #nextflow #bioinformatics
-
Segment Anything Model Can Not Segment Anything - Assessing AI Foundation Model’s Generalizability In Permafrost Mapping
--
https://doi.org/10.3390/rs16050797 <-- shared paper
--
#GIS #spatial #mapping #remotesensing #foundationmodel #AI #artificialintelligence #zeroshot #segmentation #GeoAI #spatialanalysis #LargeLanguageModel #LLM #SAM #performance #metrics #permafrost #visionmodel #icewedge #Arctic #warming #climatechange #thawslumps #landform #terrainmapping #EuroCrops #agriculture -
Not on novels, but on Holocaust survivor testimonials:
Eitan Wagner, Renana Keydar, Amir Pinchevski & Omri Abend (2023). "Automatic Topic-Guided Segmentation of Holocaust Survivor Testimonies", Journal of Computational Literary Studies 2 (1), 1–26. doi: https://doi.org/10.48694/jcls.3580.
Keywords: #segmentation, #spoken narratives, #testimonies, #narrative analysis, #topic analysis, mutual information, #NLP #CLS #JCLS
-
Have you wanted to use segment-geospatial (https://samgeo.gishub.org/) on Microsoft Planetary Computer and struggled? My blog post shows the simple solution: https://blog.rtwilson.com/how-to-get-segment-geospatial-working-on-microsoft-planetary-computer/
#python #ml #segmentation #PlanetaryComputer #geospatial #gis
-
Unicopedia Plus is a developer-oriented set of Unicode, Unihan, Unikemet & emoji utilities wrapped into one single app, built with #Electron.
Repository: 🔗 https://codeberg.org/tonton-pixel/unicopedia-plus
#characters #chinese #cjk #codepoints #desktopapplication #electronjs #emoji #ivd #japanese #javascript #kangxi #kangxiradicals #korean #normalization #opensource #regex #segmentation #strokecount #unicode #unicopedia #unihan #unikemet
-
Unicopedia Plus is a developer-oriented set of Unicode, Unihan, Unikemet & emoji utilities wrapped into one single app, built with #Electron.
Repository: 🔗 https://codeberg.org/tonton-pixel/unicopedia-plus
#characters #chinese #cjk #codepoints #desktopapplication #electronjs #emoji #ivd #japanese #javascript #kangxi #kangxiradicals #korean #normalization #opensource #regex #segmentation #strokecount #unicode #unicopedia #unihan #unikemet
-
Unicopedia Plus is a developer-oriented set of Unicode, Unihan, Unikemet & emoji utilities wrapped into one single app, built with #Electron.
Repository: 🔗 https://codeberg.org/tonton-pixel/unicopedia-plus
#characters #chinese #cjk #codepoints #desktopapplication #electronjs #emoji #ivd #japanese #javascript #kangxi #kangxiradicals #korean #normalization #opensource #regex #segmentation #strokecount #unicode #unicopedia #unihan #unikemet
-
Unicopedia Plus is a developer-oriented set of Unicode, Unihan, Unikemet & emoji utilities wrapped into one single app, built with #Electron.
Repository: 🔗 https://codeberg.org/tonton-pixel/unicopedia-plus
#characters #chinese #cjk #codepoints #desktopapplication #electronjs #emoji #ivd #japanese #javascript #kangxi #kangxiradicals #korean #normalization #opensource #regex #segmentation #strokecount #unicode #unicopedia #unihan #unikemet
-
Unicopedia Plus is a developer-oriented set of Unicode, Unihan, Unikemet & emoji utilities wrapped into one single app, built with #Electron.
Repository: 🔗 https://codeberg.org/tonton-pixel/unicopedia-plus
#characters #chinese #cjk #codepoints #desktopapplication #electronjs #emoji #ivd #japanese #javascript #kangxi #kangxiradicals #korean #normalization #opensource #regex #segmentation #strokecount #unicode #unicopedia #unihan #unikemet
-
My latest blog revisits Cisco (and others’) segmentation, touching on some requirements debate topics that came up in a set of customer design sessions. #CCIE1773 #BlueAlly #NetCraftsmen #Cisco #NetworkDesign #Security #Segmentation https://netcraftsmen.com/securing-segmentation/
-
My latest blog revisits Cisco (and others’) segmentation, touching on some requirements debate topics that came up in a set of customer design sessions. #CCIE1773 #BlueAlly #NetCraftsmen #Cisco #NetworkDesign #Security #Segmentation https://netcraftsmen.com/securing-segmentation/
-
My latest blog revisits Cisco (and others’) segmentation, touching on some requirements debate topics that came up in a set of customer design sessions. #CCIE1773 #BlueAlly #NetCraftsmen #Cisco #NetworkDesign #Security #Segmentation https://netcraftsmen.com/securing-segmentation/
-
My latest blog revisits Cisco (and others’) segmentation, touching on some requirements debate topics that came up in a set of customer design sessions. #CCIE1773 #BlueAlly #NetCraftsmen #Cisco #NetworkDesign #Security #Segmentation https://netcraftsmen.com/securing-segmentation/
-
My latest blog revisits Cisco (and others’) segmentation, touching on some requirements debate topics that came up in a set of customer design sessions. #CCIE1773 #BlueAlly #NetCraftsmen #Cisco #NetworkDesign #Security #Segmentation https://netcraftsmen.com/securing-segmentation/
-
Hi fediverse, is anyone aware of #opensource pipelines for #segmentation / #vectorization of #historical #cadastral maps? Ideally a workflow to train #AI / #ML models on specific mapsets, e.g. the new prussian survey after 1870*, the francisceian (mid 19th century) or the bavarian*** to only mention the largest surveys in central Europe. I suspect that people outside of history are working on it, these maps are a true treasure for #environmental and #biodiversity research. Links are in the reply
-
"There are people in Italy who want to adopt a child. There are women in rural France who have lost their husbands. There are households in Germany that have to make ends meet on 1,000 euros a month. They all have something in common: #data #brokers know about them. Their personal characteristics help the advertising industry make money."
An extensive analysis published at
https://netzpolitik.org/2023/eu-country-comparison-how-data-brokers-are-screening-us/
-
Just Posted: The article explores the importance of network segmentation in edge computing, discussing its benefits in improving performance, enhancing security, and
https://gestaltit.com/sponsored/mako-networks/brian-chambers/segmentation-is-a-key-edge-building-block-with-mako-networks/
#Edge #EdgeComputing #RetailEdge #Segmentation #Sponsored #TechNote #UtilizingEdge