Carregar imagem de campo blob em ImageView

Boa tarde.

Preciso recuperar uma imagem que está no SQLite em um campo Blob porém não estou conseguindo. Consigo recuperar os dados dos outros campos que são String mas deste campo não. Alguém sabe me dizer onde estou errando?

Classe Contact:

public class Contact {

//private variables
int _id;
String _fname;
String _rg;
String _cpf;
String _pai;
String _mae;
byte[] _img;



// Empty constructor
public Contact(){

}
// constructor
public Contact(int id, String fname, String rg, String cpf, String pai, String mae, byte[] img){
    this._id = id;
    this._fname = fname;
    this._rg = rg;
    this._cpf = cpf;
    this._pai = pai;
    this._mae = mae;
    this._img = img;

}

// constructor
public Contact(String fname, String rg, String cpf, String pai, String mae, byte[] img){

    this._fname = fname;
    this._rg = rg;
    this._cpf = cpf;
    this._pai = pai;
    this._mae = mae;
    this._img = img;

}

// getting ID
public int getID(){
    return this._id;
}

// setting id
public void setID(int id){
    this._id = id;
}

// getting first name
public String getFName(){
    return this._fname;
}

// setting first name
public void setFName(String fname){
    this._fname = fname;
}

// getting rg
public String getRG(){ return this._rg; }

// setting rg
public void setRG(String rg){ this._rg = rg; }

// getting cpf
public String getCPF(){ return this._cpf; }

// setting cpf
public void setCPF(String cpf){ this._cpf = cpf; }

// getting pai
public String getPai() { return this._pai; }

// setting pai
public void setPai(String pai) { this._pai = pai; }

// getting mae
public String getMae() { return this._mae; }

// setting mae
public void setMae(String mae) { this._mae = mae; }

//getting profile pic
public byte[] getImage(){
    return this._img;
}

//setting profile pic
public void setImage(byte[] b){
    this._img=b;
}

}

E para receber os dados do banco:
Contact contato = db.porId(int_id);

pic.setImageBitmap(convertToBitmap(contato.getImage()));
editTextName.setText(contato.getFName());
editTextRG.setText(contato.getRG());
editTextCPF.setText(contato.getCPF());
editTextPai.setText(contato.getPai());
editTextMae.setText(contato.getMae());