Advanced search: search for images by camera name

With photos I can search by keywords, location and dates. But is it possible to search for the device too?

In my library I have pictures of several devices. I just want to see that all my photos taken with my iPhone in 2015 for example or all photos with my Canon Powershot G7 X. The name of the camera device is stored in the database of the photo library...

File menu ==> new album Smart - model of camera of criteria is [pick a menu drop down]

LN

Tags: Mac OS & System Software

Similar Questions

  • Not able to search for a specific file name in Vista

    I can't search for a specific file name. When I search for a specific name, the text I type get numbers instead of letters of type I.

    Hi royfarnol,

    1. what file you want to search?
    2. What are the numbers that rises instead of text?
    3. it happens with all file search?

  • Is there a limit for research on the function of advanced search for files containing text matching. My search always ends with 500 discoveries but the folder contains several PDF files that match the criteria.

    Hello

    Is there a limit for research on the function of advanced search for files containing a text match? My search always ends with 500 discoveries but the folder contains several PDF files that match the criteria.

    Hi carls76936091,

    Open Acrobat, go to the Edit-> Preferences-> search & check if there is a limit to 500 set, in case if it is to increase it please.

    Kind regards
    Nicos

  • Advanced search for a price range while searching for an empty values using php in DW

    I'm creating an advanced search with DW php. I want to present a research where some titles can be left black. If looking for empty values (which I did, thank you David Powel), however then research across a range of prices doesn't seem to work.

    Please see attached form:

    The search page:

    <form action="Detailed-Search-Result.php" method="get" target="_self"><table width="90%" border="0" cellspacing="0" cellpadding="2">
      <tr>
        <td colspan="2"><label for="Detailed Search">Advanced Search</label></td>
        </tr><tr>
        <td><label for="Product">Product:</label>
          </td>
        <td><select name="Category" id="Category">
          <option value=></option>
            <option value="Keyboard">Keyboard</option>
            <option value="Piano">Piano</option>
          </select></td>
      </tr>
      <tr>
        <td><label for="Make">Make:</label>
        </td>
        <td><select name="Manufacturer">
          <option value=></option>
          <option value="Boss">Boss</option>
          <option value="Casio">Casio</option>
          <option value="Kawai">Kawai</option>
          <option value="Ketron">Ketron</option>
          <option value="Korg">Korg</option>
          <option value="Roland">Roland</option>
          <option value="Samson">Samson</option>
          <option value="Yamaha">Yamaha</option>
        </select></td>
      </tr>
      <tr>
        <td><label for="Color">Color:</label></td>
        <td><select name="Color">
          <option value=></option>
          <option value="Black">Black</option>
          <option value="Cherry">Cherry</option>
          <option value="Mahogany">Mahogany</option>
          <option value="Polished Eboney">Polished Eboney</option>
          <option value="Rosewood">Rosewood</option>
          <option value="White">White</option>
          <option value="Red">Red</option>
        </select></td>
      </tr>
    
      <tr>
        <td><label for="Price">Price:</label></td>
        <td><select name="Price">
          <option value=></option>
          <option value="0-500">£0-500</option>
          <option value="500-1000">£500-1000</option>
          <option value="1000-2000">£1000-2000</option>
          <option value="2000">£2000&gt;</option>
        </select></td>
      </tr>
      <tr>
        <td colspan="2">
          <input name="Search2" type="submit" id="Search2"></td>
        </tr>
        </table>
    </form>
    
    

    The results page

    $varCategory_rsgetsearch2 = "%";
    if (isset($_GET['Category'])) {
      $varCategory_rsgetsearch2 = $_GET['Category'];
    }
    $varMake_rsgetsearch2 = "%";
    if (isset($_GET['Manufacturer'])) {
      $varMake_rsgetsearch2 = $_GET['Manufacturer'];
    }
    $varColor_rsgetsearch2 = "%";
    if (isset($_GET['Color'])) {
      $varColor_rsgetsearch2 = $_GET['Color'];
    }
    $varPrice_rsgetsearch2 = "%";
    if (isset($_GET['Price'])) {
      $varPrice_rsgetsearch2 = $_GET['Price'];
    }
    mysql_select_db($database_dBconn, $dBconn);
    $query_rsgetsearch2 = 'SELECT * FROM products';
    $where = false;
    if (isset($_GET['Category']) && !empty($_GET['Category'])) {
     $query_rsgetsearch2 .= ' WHERE Category LIKE varCategory '. GetSQLValueString($_GET['Category'], 'text');
      $where = true;
    }
    if (isset($_GET['Manufacturer']) && !empty($_GET['Manufacturer'])) {
      if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      }
     $query_rsgetsearch2 .= 'Manufacturer LIKE varManufacturer ' . GetSQLValueString($_GET['Manufacturer'], 'text');
    }
    if (isset($_GET['Color']) && !empty($_GET['Color'])) {
        if ($where) {
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      }
      $query_rsgetsearch2 .= 'Color LIKE varColor ' . GetSQLValueString($_GET['Color'], 'text');
    }
    if (isset($_GET['Price']) && !empty($_GET['Price'])) {
        if ($where) {
                        } 
       $query_rsgetsearch2 .= ' AND ';
      } else {
       $query_rsgetsearch2 .= ' WHERE ';
        $where = true;
      }
     switch( $_GET['Price'] ){
            case '0-500':
            $query_rsgetsearch2 .= '  RRP BETWEEN 0 AND 500 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
              case '500-1000':
            $query_rsgetsearch2 .= ' RRP BETWEEN 500 AND 1000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
                        case '1000-2000':
            $query_rsgetsearch2 .= ' RRP BETWEEN 1000 AND 2000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break; 
              case '2000':
           $query_rsgetsearch2 .= ' RRP BETWEEN 2000 AND 10000 ORDER BY price ASC'. GetSQLValueString($_GET['Price'], 'text');
            break;
    }
    
    $query_rsgetsearch2 = sprintf("SELECT * FROM products WHERE Category LIKE %s AND products.Manufacturer LIKE %s AND products.Color LIKE %s", GetSQLValueString("%" . $varCategory_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varMake_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varColor_rsgetsearch2 . "%", "text"));
    $query_limit_rsgetsearch2 = sprintf("%s LIMIT %d, %d", $query_rsgetsearch2, $startRow_rsgetsearch2, $maxRows_rsgetsearch2);
    $rsgetsearch2 = mysql_query($query_limit_rsgetsearch2, $dBconn) or die(mysql_error());
    $row_rsgetsearch2 = mysql_fetch_assoc($rsgetsearch2);
    
    

    I would be greatfull for any help

    I managed to solve the problem.

    Ultimately I don't check if the values were empty, as it worked fine without. However, the switch of the price did not work in combination with the rest of the query.

    I solved the problem as follows:

    $varCategory_rsgetsearch2 = "%";
    if (isset($_GET['Category'])) {
      $varCategory_rsgetsearch2 = $_GET['Category'];
    }
    $varMake_rsgetsearch2 = "%";
    if (isset($_GET['Manufacturer'])) {
      $varMake_rsgetsearch2 = $_GET['Manufacturer'];
    }
    $varColor_rsgetsearch2 = "%";
    if (isset($_GET['Color'])) {
      $varColor_rsgetsearch2 = $_GET['Color'];
    }
    $varPrice_rsgetsearch2 = "%";
    if (isset($_GET['Keysound_price'])) {
      $varPrice_rsgetsearch2 = $_GET['price'];
    
    }
    mysql_select_db($database_dBconn, $dBconn);
    $query_rsgetsearch2 = sprintf("SELECT * FROM products WHERE Category LIKE %s AND products.Manufacturer LIKE %s AND products.Color LIKE %s", GetSQLValueString("%" . $varCategory_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varMake_rsgetsearch2 . "%", "text"),GetSQLValueString("%" . $varColor_rsgetsearch2 . "%", "text") );
    switch( $_GET['price'] ){
            case '0-500':
            $query_rsgetsearch2 .= ' AND price BETWEEN 0 AND 500 ORDER BY price ASC';
            break;
              case '500-1000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 500 AND 1000 ORDER BYprice ASC';
            break;
                        case '1000-2000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 1000 AND 2000 ORDER BY price ASC';
            break;
              case '2000':
            $query_rsgetsearch2 .= ' AND price BETWEEN 2000 AND 10000 ORDER BY price ASC';
            break;
    }
    
    $query_limit_rsgetsearch2 = sprintf("%s LIMIT %d, %d", $query_rsgetsearch2, $startRow_rsgetsearch2, $maxRows_rsgetsearch2);
    $rsgetsearch2 = mysql_query($query_limit_rsgetsearch2, $dBconn) or die(mysql_error());
    $row_rsgetsearch2 = mysql_fetch_assoc($rsgetsearch2);
    

    I'm sure you can keep checking the values, however for me the most was not necessary for this.

    Thanks for your help

  • How to search for images in Photoshop Touch?

    Hello.. How are you guys? I hope you all well...

    IAM, which makes a game and I need images with 4 or 5 s position

    Like bird eating (I'll put his face in the first picture, the second mouth open frame, the third picture, eat food)

    but I don't know how to do research on images like this

    Thank you

    Hi thunderxlight11111,

    Although the PS Touch allows to perform searches on Google image for images that are labeled as being available for commercial with change, you should consult the Adobe policy below and confirm the rights of use with the owner before using images in commercial projects.

    http://www.Adobe.com/products/EULAs/usage_rights/imageusagerights.html

    If you click the icon that appears as a bit of mountain and Sun in a setting with a symbol at the top right, it is for adding an image, in this section is an option for Google image searches.

    -Dave

  • Search for images in the album

    Is it possible for me to search for photos: specific keywords within an album? iPhoto had this feature convenient (and many others), I don't know if the Photo has it.

    You can do this by creating a smart album with the constarints

    Key word is...

    and

    album is...

    For example, this smart album will find all photos with the keyword "Flower" in the album "Patagonia 2007."...

  • Pane (Advanced) search for Windows 7?

    I've been using Windows 7 for a while now and love it!

    However, when I was preaching to my family and my friends, they asked me if the search pane advanced (that we had running XP) is back in Windows 7.

    Of course, with the advanced Windows search query syntax (let's call this AQS), we are able to achieve what could research advanced and much more. But then, they have made a very good point:

    Why I (they) should learn/remember a special syntax to run a research complex, when the advanced XP search pane was so much easier? And I kinda agree with them.

    For example, without looking at the documentation of AQS, how many of you can come immediately with the unique search criteria for:

    1. all files jpg and png (only)
    2. who are in e:\images and d:\images, and f:\dir\images
    3. without recursing into all subdirectories
    4. who are more than 10 KB
    5 and has been created between December 25 and January 1?

    Anyone got an answer for this?

    Or is there some kind of advanced research as in Outlook? Choose from a list of filters the search/filter field, and you get a nice label/text box to type in?

    I did some research and it seems that he has only partial (limited) support for this. For example, in the music library, you can only add filters to the Album, artist, Genre, length; Documents: Authors, Type, Date modified, size; etc.

    And when you are not in a folder on an external drive of library, for example, only filters that you can add are updated and the size.

    Are there ways to add more filters? Or are we limited either: 1) based on the filters that Windows 7 * THINK * we need, or 2) loop down and memorize the AQS?

    [Edit]
    Here's another story: I was explaining to my mother how you could build a search criteria AQS, and she pointed to (paraphrasing), "why he tries to search when you are not actually type? Why not have a search button that starts the search only when you're ready to? »

    It's just me, but how do you even get here?

    My "search" stands usually just before I can even START adding a filter. That initiate original research of a new Explorer window? Or start you looking for the start icon, and then add a filter... or...?
    For me, the search is missing... 99% of my data is on a network share, and it does not find it, even if I'm in the folder that I'm looking for
  • How can I search to search for images with only 2 specific people?

    I have a lot of photos the tag with a lot of peoples names and other keywords.

    I also have many people tag with the face detection feature.

    I want to see pictures that don't have 2 specific people in them, anyone else included.

    I expect Ctrl-click on a few faces and he let me to raise only pictures with those two, no chance.

    I was hoping to enter key words somehow, no luck.

    There has got to be possible, hoping someone can help me get there faster...

    Appreciate the help!

    I want to see the pictures that have included ONLY 2 specific people in them, nobody else.

    It is conceptually simple, but somewhat tedious: first of all, you will find all the photos that have at least 2 people, then you exclude those photos that have other peoples.  It will be much easier if you have all of those organized hierarchically under a parent keyword, for example people.

    1. in the catalogue on the left panel, make a right click of the quick Collection and make clear quick Collection.

    2. click on all photographs.

    3. in the library filter bar, open the metadata browser and configure it to have two columns of keyword.

    4. in the first column, select the keyword in the first person and in the second column, select the second person. This will show the pictures that have at least two keywords, but they can include photos that also have other keywords of people too.

    5. do not change > all select and make Photo > add to quick Collection.

    6. in the catalog Panel, click the quick Collection.

    7. in the library filter metadata browser, delete a keyword column.

    8. in the remaining key word column, if you have intermediate keywords with your keywords of individuals, expand each of them.  For example if you have people > family, people > friends, people > colleagues, etc all expand them to all the keywords of the sheet are show.

    9. Select all the keywords people clicking on the first and then shift-click on the last.

    10 deselect any intermediate parent keyword (e.g. people > family) by Cmd/Ctrl-clicking them.   Deselect the people themselves.

    11. deselect keywords two sheets on the two people.  At this point, you should have all of the keywords selected sheet people except for the key words of two people and no intermediate grouping selected keywords.   Pictures showing are those containing the two desired keywords and at least another keyword of people.

    12. do not change > all select and make Photo > remove from quick Collection.

    13 disable filters by clicking None in the library filter bar.

    Quick Collection now contains these photos that contain the desired keywords of two people and no other keywords of people.

    If you do a lot, you can use any filter plugin to predefine a search that automates this for you.  Set this research would be a bit difficult, so if you want to go this route, send me a private message and I'll take you through it.

  • Advanced search for skin instructions

    HR 11 Webhelp

    Search instructions would be useful; for example, people seldom think to use DO NOT. Is there a good way to add a statement to the default appearance, or add a search statement that remains at the top of the search box?

    Thank you

    If you want to add to the skin, you will need to add this in the whfform.htm file (and resize the space available in whfdhtml.htm). But could create you a section on the use of the option of help/search? This is probably the easiest option.

  • Using the smart tools button now does not work to search for images via Firefox

    I use Firefox version 17. It is a new problem. I was using google search.

    What is a button on a web page or a button provided by an extension?

  • Delete Google search for images - Moto G homescreen

    All possible ways to get the Google search widget to be at the top of each screen? It can not be removed in the usual way.

    You will need to use another Launcher. The persistent search bar belongs to Google now Launcher. Maybe try Nova, this is a nice substitute.

  • Search for files which file name contains a specific string

    Hello

    I'm lookng for a way to find all the files in a directory, what part of the file name contains a specific string.

    for example:

    String = Hello

    files;

    -1hello2.txt

    -22he45.txt

    -gehello42353.txt...

    The result should be an index or the full file name that matches. In the example, I found the indexes 0, 2, or 1hello2.txt and gehello42353.txt.

    In fact, I have a list of files with the "recursive list.vi".

    Any suggestions are welcome.

    Thank you for your help

    Yves

    You can use the list of folder - function with * Hello *-model.

    From there on, you get the names of files that include this specific model.

    If already you have the list of files:

    -use the chain of digitization of the chips in a loop for and if token index! = - 1, then you can add this index in array to the list.

    I m sure there are better ways to do it, but nothing that I can get to quickly.

  • [CC/JS] Search for Images with white borders

    Hello

    I'm writing a script, which places the images (jpg-CMYK) in frames. So far so good, but when an image has a white background to its top, right, bottom, OR left border, and then the picture frame should get a border in InDesign (30% black).

    Is there a simple way to check this?

    I would be very happy to have a few ideas, from points, excerpts of code regardless of...

    See you soon

    Tobias

    Hello

    Agree with Peter, but...

    You can pass in the type of image clippingPath to get a restricted path to frame and use it to create a shape with geometricBounds to compare with your image gBounds.

    Just an idea...

    to start:

    mImage  = app.selection[0].graphics[0];
    with (mImage.clippingPath) {
      currClip = clippingType;
              clippingType = ClippingPathType.DETECT_EDGES;
              useHighResolutionImage = false;
              restrictToFrame = true;
              threshold = 1;
              mPath = paths[0];     // hm... here can be more paths...
              }
    mShape = app.activeDocument.graphicLines.add({strokeWidth:0.1});
    mShape.paths[0].entirePath = mPath.entirePath;
    
    mImage.clippingPath.clippingType = currClip;
    

    guess: framework (image.parent) is selected

    result: Shape is an object with geoBounds and the set of points. How to compare - i.e. mathematical effort and your tolerance assumings...

    Shape is to remove() in the end

    Jarek

  • Search for calibration of camera profiles

    I just reinstalled my OS 10.5 on my system. I backed up my entire drive before reinstalling.

    And now in my camera calibration tab I only see 3.3 and 4.4 ACR ACR where as before I had showing faithful, landscape etc...

    This issue these profiles comes so I can copy them from my backup disk to the new system reinstalled.

    The profiles should be installed with Lightroom 2.4 or 2.5.

    During the installation you can find them in/Library/Application Support / Adobe / CameraRaw / CameraProfiles

  • DROID: Search for images Google Maps App - registration

    is there a way to "clean up" addresses the application of the card?

    Yes, you can go to

    Settings > Applications > manage Applications

    Click menu, and then choose Filter > all

    Find the Maps app and click on, and then choose clear data.

    This erases all and basically reset to the default values.

Maybe you are looking for