Answer the question
In order to leave comments, you need to log in
Working with images
Who can suggest literature on photo processing to determine the foreground and background in the image?
Answer the question
In order to leave comments, you need to log in
Look for such people:
a story about studying
Well, read regularly: advice and more advice .
do you need to find the depth? It's not possible with just one photo. The exception is photos with a blurry background, where at least somehow you can mathematically separate some blurry pixels and sharper color transitions. Minimum photo sequence.
Autodesk is already doing something called Photofly
www.youtube.com/watch?v=8YNrQA6eofI
Try this if I understood the problem correctly.
SELECT
cs2.userId,
count(cs2.storeId) AS count_stores
FROM
chess_storetry AS cs2,
(SELECT
cs.storeId,
min(cs.timeStore) AS timeStore
FROM
chess_storetry AS cs,
_historystore AS h
WHERE
cs.numberTry = 0 AND h.userId=cs.userId AND h.storeId = cs.storeId AND h.finish=1
GROUP BY
storeId) AS results
WHERE
cs2.numberTry = 0 AND cs2.storeId=results.storeId AND cs2.timeStore = results.timeStore
GROUP BY userId
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question