JLabel não exibirá imagem - NullPointerException

Este é o meu primeiro programa Java GUI, e realmente apenas o meu segundo programa java, então tenha calma comigo :) Meu programa é resultado de muita pesquisa e leitura de documentos java. Meu problema é que eu tenho uma folha de sprite de 52 cartões, e estou tentando salvar essas placas individualmente para uma matriz Buffered Image usando subImage, e apenas para fins de teste, exibir todos os 52 em uma janela. O arquivo está no diretório correto eu me certifiquei disso. Acredito que meu problema esteja no uso de Jlabels ou simplesmente um erro tolo. De qualquer forma, aqui está a minha classe que faz a divisão da folha de sprite

 package gui;

import java.awt.GridLayout;
import java.awt.image.BufferedImage;
import java.io.File;


import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class crdimgs extends JPanel {/**
 *
 */
    static final long serialVersionUID = 1L;
    public final int width = 10;
    public final int height = 20;
    public int rows = 13;
    public int cols = 5;

    public BufferedImage image;
    File cardimg = new File("Cards.jpg");
    BufferedImage cards[];

    public void loadsplit(File loadimage){

        try{
            image = ImageIO.read(loadimage);

            } catch(Exception error){
                System.out.print("error");
              }


        cards = new BufferedImage[cols*rows];

    }

    public crdimgs() {
        loadsplit(cardimg);
        setLayout(new GridLayout(rows, cols, 1, 1));

        int x = 0;
        int y = 0;
        int subimg = 0;

        for( int i = 0; i < rows; i++)
        {
            JPanel panel = new JPanel();
            cards[subimg] = new BufferedImage(width, height, 5);
            cards[subimg] = image.getSubimage(x, y, width, height);
            panel.add(new JLabel(new ImageIcon(cards[subimg])));
            add(panel);
            x+=width;
            subimg++;
        }
        y+=height;
        x=0;
        }
    }
}

E minha turma principal

package gui;
import javax.swing.JFrame;
import java.awt.Color;


public class cards extends JFrame {

    private static final long serialVersionUID = 1L;

    public cards(){

        setTitle("Poker");
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(1000, 700);
        setLocationRelativeTo(null);
        this.getContentPane().setBackground(Color.GREEN);
        setVisible(true);
        setResizable(false);
        add(new crdimgs());

    }

public static void main(String[] args){
    new cards();
}
}

Erros que recebo no momento são:

errorException in thread "main" java.lang.NullPointerException
at gui.crdimgs.<init>(crdimgs.java:53)
at gui.cards.<init>(cards.java:22)
at gui.cards.main(cards.java:28)

questionAnswers(1)

yourAnswerToTheQuestion